/* Ricardo the Sommelier - Elegant Wine Theme */

:root {
    --wine-dark: #4a1c2b;
    --wine-primary: #722f37;
    --wine-light: #8b4553;
    --gold: #c9a227;
    --gold-light: #d4b655;
    --cream: #faf8f5;
    --charcoal: #2d2d2d;
    --text: #3d3d3d;
    --text-light: #6d6d6d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(74, 28, 43, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-primary) 50%, var(--wine-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='rgba(201,162,39,0.03)'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 5rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: 2.5rem;
    color: var(--wine-primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.profile-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(74, 28, 43, 0.3);
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--wine-light) 0%, var(--wine-primary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-style: italic;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--wine-primary);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.about-text p {
    margin-bottom: 1rem;
}

/* Credentials Section */
.credentials {
    background: var(--cream);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.5rem;
    color: var(--wine-primary);
    margin-bottom: 0.5rem;
}

.credential-card .org {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1rem;
}

.status.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status.in-progress {
    background: #fff3e0;
    color: #ef6c00;
}

/* Expertise Section */
.wine-knowledge {
    background: var(--wine-primary);
    color: var(--cream);
}

.wine-knowledge h2 {
    color: var(--cream);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 2px solid var(--wine-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background: var(--wine-primary);
    color: var(--cream);
    border-color: var(--wine-primary);
}

.service-card h3 {
    color: var(--wine-primary);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--gold);
}

/* Contact Section */
.contact {
    background: var(--cream);
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info {
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--wine-primary);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0;
    text-align: center;
}

.footer-tagline {
    margin-top: 1rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .section {
        padding: 4rem 0;
    }
}
