:root {
    --bg-color: #ffffff;
    --text-primary: #525252; /*#2c2c2c;*/
    --text-secondary: #727272;
    --text-light: #999999;
    --accent-wine: #a39778;
    --accent-gold: #d4af37;
    --warm-beige: #f4f1e9; /*#f8f6f0;*/
    --text-beige:#a39778;
    --bg-footer:#333;
}

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

body {
    /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;*/
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-color);
    font-size: 16px;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

.scroll-arrow, .scroll-arrow-title, .link-content{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    text-align:center;
}
.logo img {
    height:70px;
    
}
.nav-links {
    display: none; /*flex*/
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}
        /* Mobile Menu */
.mobile-menu-toggle {
    display: flex; /*none*/
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 40px;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}
/* Responsive behavior */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        padding: 15px 20px;
    }
    .mobile-nav {
        top:100px;
    }
}        
/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-wine);
    z-index: 1001;
    transition: width 0.1s;
}

/* Hero Section */
.hero-section {
    height: 100vh;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 2s ease forwards;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.scroll-arrow-title {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    text-transform: uppercase;

}         
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    font-weight:100;
    cursor: pointer;
    animation: bounce 2s infinite;
}        
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Story Sections */
.story-section {
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    height: 100vh;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-block-stacked {
    flex-direction: column !important;
    justify-content: center;
    gap: 40px;
    min-height: 150vh; /* CHANGÉ : min-height au lieu de height fixe */
    height: auto; /* AJOUTÉ : Hauteur automatique */
}
.story-block-stacked-200 {

    min-height: 200vh; /* CHANGÉ : min-height au lieu de height fixe */

}
.story-block-stacked-100 {

    min-height: 100vh; /* CHANGÉ : min-height au lieu de height fixe */

}
.story-image {
    width: 100%;    
    object-fit: cover;
    display: block;
        object-position: top center;
}
.story-image-portrait {
    height: 600px;
    object-position: 10% center;


}        
.story-image-landscape {
    margin-top:20px;height:400px;
    object-position: center;

}
.story-image-portrait-left {
    height: 445.5px;
    width:315px;

}        
.story-image-landscape-left{
    width: 445.5px;
    height:315px;

}  
.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    height: 100%;
}

.story-title {
    font-size: 1.6rem;/*2rem*/
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-primary);
    line-height: 1.3;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.story-text p.story-highlight{
    font-family: 'Playfair Display', serif;
    /*font-size:1.6rem;*/
}

/* Monument Section with Parallax */

.monument-section,.portrait-section {
    height: 100vh;
    display: flex;
    margin: 0;
}

.monument-image {
    width: 100%;
    height: 100vh;
    background-image: url('../img/trevallon_histoire_story_B_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--warm-beige);
}
.portrait-image {
    width: 100%;
    height: 100vh;
    background-image: url('../img/trevallon_histoire_story_D_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--warm-beige);
}   
.monument-text, .portrait-text {
    width: 100%;
    height: 100%;
    background: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}        
.monument-content, .portrait-content {
    max-width: 500px;
    text-align: left;
}

.monument-content h2,.portrait-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.monument-content p,.portrait-content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}


/* Wine Section */
.bottle{
    height:800px;

}
.label{
    width:400px;

}
.wine-section {
    background: var(--warm-beige);
    height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
}

.wine-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.wine-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-wine);
}

.wine-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wine-characteristics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.characteristic-card {
    background: white;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.characteristic-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.characteristic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.characteristic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-wine);
}

.characteristic-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Staggered animations for wine cards */
.characteristic-card:nth-child(1) { transition-delay: 0.1s; }
.characteristic-card:nth-child(2) { transition-delay: 0.2s; }
.characteristic-card:nth-child(3) { transition-delay: 0.3s; }

/* Newsletter */
.newsletter-section {
    background: var(--text-primary);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
    width: 100%;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 14px;
    outline: none;
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--accent-wine);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.newsletter-form button:hover {
    background: #6d0f2a;
}



/* Quote Section */
.quote-section {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    /*background-color: var(--warm-beige);*/


}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    width: 100%;

}

.quote-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-content blockquote {
    font-size: 1.5rem;
    /*font-style: italic;*/
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-content cite {
    font-size: 1rem;
    color: var(--text-secondary);
}
.link-section {
    min-height: 50vh;
    background: white;
    display: flex;
    align-items: center;
    background-color: var(--warm-beige);
}

.link-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    width: 100%;
    text-transform: uppercase;
    color:var(--text-beige);
} 
.link-content.visible {
    opacity: 1;
    transform: translateY(0);
}
.link-content a{
    text-decoration:none;
    color: var(--text-secondary);
}

/* vintage */
/* Hauteur limitée + scrollbar sur desktop */
.vintage-years {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 5px;
    font-size: 1.5em;
    min-width:80px;
    
    /* Scrollbar comme la galerie */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-wine) transparent;
}

.vintage-years::-webkit-scrollbar {
    width: 6px;
}

.vintage-years::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.vintage-years::-webkit-scrollbar-thumb {
    background: var(--accent-wine);
    border-radius: 10px;
}
/* Animation des millésimes */
.vintage-year {
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.vintage-year:hover {
    /*color: #891769;
    transform: translateX(5px);*/
    color: var(--text-beige);
    font-size:1.2em;
}

.vintage-year.active {

    color: var(--text-beige);
    font-size:1.2em;
    /*
    font-weight: bold;border-left: 3px solid #891769;
    padding-left: 6px;*/
}
/* Version mobile avec points */
@media (max-width: 991px) {
    .vintage-years {
        max-height: none;
        overflow-y: visible;
        display: flex;
        flex-wrap: wrap;
        line-height: 1.8;
    }
    
    .vintage-year {
        margin-bottom: 0;
        padding: 4px 0;
        background: none !important;
        transform: none !important;
        font-size: 0.85rem;
    }
    
    .vintage-year:not(:last-child)::after {
        content: " • ";
        color: var(--text-light);
        margin: 0 6px;
    }
    
    .vintage-year:hover {
        background: none !important;
        transform: none !important;
        color: var(--accent-wine);
    }
    .vintage-year:hover {
        /*color: #891769;
        transform: translateX(5px);*/
        color: var(--text-beige);
        font-size: 0.85rem;
    }
    
    .vintage-year.active {
        color: var(--text-beige);
        font-size: 0.85rem;
        /*
        font-weight: bold;border-left: 3px solid #891769;
        padding-left: 6px;*/
    }
}
      
/* Footer */
.footer {
    background: var(--bg-footer);
    color: white;
    padding: 80px 0;
    /*min-height: 50vh;*/
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-section h6 {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-content {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}
.footer-content a{
    color: var(--text-light);
    text-decoration: none;
    text-transform:uppercase;
}
/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-section {
        background-attachment: scroll;
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-block {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .story-image {
        height: 50vh;
        min-height: 300px;
    }
    .story-image-landscape {
        height: 20vh;
    }           
    .story-section,
    .wine-content,
    .newsletter-content,
    .quote-content,
    .link-content {
        padding: 0 20px;
    }
    
    .story-title {
        font-size: 2rem;
    }
     .story-block-stacked {
        height: auto !important; /* IMPORTANT : Hauteur automatique sur mobile */
        min-height: auto !important; /* IMPORTANT : Pas de hauteur minimum sur mobile */
        padding: 60px 0 !important; /* AJOUTÉ : Padding vertical à la place */
        gap: 30px; /* RÉDUIT : Moins d'espace entre rows sur mobile */
        align-items: stretch; /* AJOUTÉ : Étirer les éléments */
    }
    .story-block-stacked-200, .story-block-stacked-100 {
            height: auto !important; /* IMPORTANT : Hauteur automatique sur mobile */
            min-height: auto !important; /* IMPORTANT : Pas de hauteur minimum sur mobile */
    
    }
   
    /* S'assurer que les rows prennent la place nécessaire */
    .story-block-stacked .row {
        margin-bottom: 0 !important;
        flex-shrink: 0; /* Empêcher la compression */
    }
    
    /* Ajustement des images sur mobile */
    .story-block-stacked .story-image {
        height: auto !important;
        max-height: 40vh; /* Limiter la hauteur des images */
        width: 100%;
        object-fit: cover;
        object-position: top center;
    }
    
    /* Ajustement du texte sur mobile */
    .story-block-stacked .story-text {
        padding: 20px 0; /* Padding vertical pour le texte */
    }   
    .bottle{
        height:600px;
    }
    .wine-title {
        font-size: 2rem;
    }
    
    .wine-section,
    .newsletter-section{
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    .quote-section,
    .link-section {
        min-height: 50vh; 
        padding: 80px 20px;
    }           
    .monument-section, .portrait-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .monument-image, .portrait-image {
        width: 100%;
        height: 100vh;
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .monument-text, .portrait-image {
        width: 100%;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .monument-content h2, .portrait-content h2{
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .wine-characteristics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }
        .story-block[style*="height:150vh"] {
        height: auto !important;
        min-height: auto !important;
    }
        .story-block-stacked .story-image.story-image-landscape {

        object-position: top center;
        object-fit: contain;
        width: 100%;
        min-height: fit-content;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .story-block,
    .monument-section,
    .portrait-section {
        min-height: 70vh;
    }
    .monument-image,
    .portrait-image {
        height: 40vh;
        min-height: 500px;
    }
    
    .monument-text,
    .portrait-text {
        min-height: 30vh;
        padding: 30px 20px;
    }            
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        padding:20px;
    }    
    .story-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .story-image {
        height: 40vh;
        min-height: 250px;
    }
  
    .story-block-stacked {
        gap: 20px;
        padding: 40px 0 !important;
    }
    
    .story-block-stacked .story-image {
        max-height: 35vh;

    }
    
    .story-block-stacked .story-text {
        padding: 15px 0;
    }  
    .bottle{
        height:400px;
    }
    .label{
        width:100%;
    }  
    .wine-title {
        font-size: 1.8rem;
    }
    .story-block-stacked .story-image.story-image-landscape {
        height: 10vh;
        max-height:210px;
        object-position: top center;
        object-fit: contain;
        width: 100%;
        min-height: fit-content;
    }
    .story-block-stacked .story-image.story-image-portrait {
        height: 10vh;
        min-height:420px;
        object-position: top center;
    }   

}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    /*scroll-snap-type: y mandatory;*/
}

/* Scroll snap pour chaque section */
.hero-section,
.story-block,
.monument-section,
.portrait-section,
.wine-section,
.newsletter-section,
.quote-section,
.team-photos-section,
.link-section {
    scroll-snap-align: start;
}

/* Parallax fixes for mobile */
@media (max-width: 768px) {
    .hero-section,
    .monument-section,
    .portrait-section {
        background-attachment: scroll;
    }
    
    html {
        scroll-snap-type: none;
    }
}
        
/* ========================================
   SECTION ÉQUIPE - CSS CORRIGÉ FINAL
   ======================================== */

.team-photos-section {
    background: var(--warm-beige);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.team-photos-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.team-photos-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
    
    /* Style de la scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-wine) transparent;
}

.team-photos-scroll::-webkit-scrollbar {
    height: 8px;
}

.team-photos-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.team-photos-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-wine);
    border-radius: 10px;
}

.team-photos-scroll::-webkit-scrollbar-thumb:hover {
    background: #6d0f2a;
}

.team-photo-item {
    flex-shrink: 0;
    text-align: center;
    width: 250px;
}

.team-photo-item .story-image {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.team-info {
    margin-top: 15px;
}

.team-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.team-info p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .team-photos-section {
        padding: 60px 0;
    }
    
    .team-photos-scroll {
        gap: 20px;
        padding: 15px 5px;
    }
    
    .team-photo-item {
        width: 200px;
    }
    
    .team-photo-item .story-image {
        max-width: 200px;
    }
    
    .team-info h5 {
        font-size: 1rem;
    }
    
    .team-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-photo-item {
        width: 180px;
    }
    
    .team-photo-item .story-image {
        max-width: 180px;
    }
}

/* Fade-in général */
.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade.show {
    opacity: 1;
}

/* Loader centré */
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid #bbb;
    border-top-color: #891769; /* couleur vin.co si tu veux */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* DIMENSIONS FIXES - À ajouter à votre CSS */
#wineContent {
    min-height: 500px; /* Hauteur fixe pour la zone texte */
}

/*.col-lg-5 {
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

#wineImage {
    width: 100%;
    max-width: 400px;
    min-height: 400px; 
    object-fit: contain;
}*/
/*
#wineVintage {
    min-height: 80px; 
}

#wineDescription {
    min-height: 200px; 
}

#wineAdvice {
    min-height: 100px; 
}
*/

/* Mobile 
@media (max-width: 768px) {
    #wineContent { min-height: 400px; }
    .col-lg-5 { min-height: 300px; }
    #wineImage { min-height: 300px; max-width: 300px; }
    #wineDescription { min-height: 150px; }
    #wineAdvice { min-height: 80px; }
}*/
