/* 
  VINO VIVO - Custom Design System
  Theme: Mid-century Modern meets Brazilian Soul
*/

:root {
    --color-base: #2C1B14;
    --color-paper: #F5F0E1;
    --color-accent-green: #006733;
    --color-accent-gold: #B8860B;
    --color-accent-wine: #800020;
    --color-text-main: #F5F0E1;
    --color-text-muted: #D1C7B7;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-base);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, .accent-font {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(44, 27, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-paper);
    text-decoration: none;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu (JS-less) */
#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--color-text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero_real.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-accent-gold);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.since-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--color-accent-wine);
}

/* Service Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent-gold);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    text-align: left;
    width: 150px;
    padding: 15px 0;
    color: var(--color-accent-gold);
    vertical-align: top;
}

.info-table td {
    padding: 15px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-base);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    #menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    .concept-grid, .access-content {
        grid-template-columns: 1fr;
    }

    .concept-img {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}
