/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

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

:root {
    /* Color Palette - Whisky & Highland Inspired */
    --color-primary: #8B6914;        /* Whisky Gold */
    --color-secondary: #2C5530;      /* Deep Highland Green */
    --color-accent: #C19A6B;         /* Aged Barrel */
    --color-dark: #1a1a1a;           /* Rich Dark */
    --color-light: #f8f6f1;          /* Cream */
    --color-text: #333333;           /* Text Dark */
    --color-text-light: #666666;     /* Text Light */
    --color-overlay: rgba(26, 26, 26, 0.7);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--color-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.85));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-smooth);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: white;
    font-family: var(--font-heading);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-right: var(--spacing-md);
    border-right: 2px solid var(--color-accent);
}

.brand-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-family: var(--font-body);
}

.brand-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.cta-btn):hover {
    color: var(--color-accent);
}

.nav-link:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:not(.cta-btn):hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--color-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-link.cta-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.6)),
                url('../images/hero-highlands.jpg') center/cover;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 85, 48, 0.1), rgba(26, 26, 26, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    color: var(--color-accent);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-dates {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
    font-weight: 400;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    background: rgba(139, 105, 20, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--color-accent);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 105, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   OVERVIEW SECTION
   ======================================== */

.overview-section {
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.overview-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.6));
}

.card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.card-content i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

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

/* ========================================
   ITINERARY SECTION
   ======================================== */

.itinerary-section {
    background: var(--color-light);
}

.itinerary-tabs {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tab-buttons {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    overflow-x: auto;
    padding-bottom: var(--spacing-xs);
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-light);
}

.tab-buttons::-webkit-scrollbar {
    height: 6px;
}

.tab-buttons::-webkit-scrollbar-track {
    background: var(--color-light);
}

.tab-buttons::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--color-secondary);
    background: white;
    color: var(--color-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: var(--color-light);
}

.tab-btn.active {
    background: var(--color-secondary);
    color: white;
}

.tab-content-wrapper {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeInSlide 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.day-header {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.day-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 0.3rem;
}

.day-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
}

.day-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-md);
    align-items: start;
}

.day-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.day-details {
    padding: var(--spacing-sm);
}

.day-details p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.timeline-item {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 2px solid var(--color-accent);
}

.timeline-item h4 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.timeline-item h4 i {
    color: var(--color-primary);
}

.timeline-item p {
    color: var(--color-text-light);
}

.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--color-light);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid var(--color-accent);
}

.highlight-item i {
    color: var(--color-primary);
}

/* ========================================
   DISTILLERIES SECTION
   ======================================== */

.distilleries-section {
    background: white;
}

.distilleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.distillery-card {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1e3d23 100%);
    color: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.distillery-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.distillery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.distillery-card:hover::before {
    opacity: 1;
}

.distillery-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: -0.5rem;
}

.distillery-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.distillery-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

.distillery-region {
    display: inline-block;
    background: rgba(193, 154, 107, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.distillery-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    grid-column: span 2;
}

.distillery-card.featured .distillery-number {
    font-size: 4rem;
}

.distillery-card.featured h3 {
    font-size: 2rem;
}

/* ========================================
   WHAT'S INCLUDED SECTION
   ======================================== */

.included-section {
    background: var(--color-light);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.included-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    transition: var(--transition-smooth);
}

.included-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.included-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-secondary);
}

.included-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ========================================
   HIGHLIGHTS GALLERY
   ======================================== */

.highlights-section {
    background: white;
}

.highlights-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    padding: var(--spacing-md);
    color: white;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   PERFECT FOR SECTION
   ======================================== */

.perfect-for-section {
    background: var(--color-light);
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.perfect-for-card {
    background: white;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--color-primary);
}

.perfect-for-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--color-accent);
}

.perfect-for-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.perfect-for-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.perfect-for-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(44, 85, 48, 0.85)),
                url('../images/highlands-dramatic.jpg') center/cover fixed;
    color: white;
    position: relative;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tour-details-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-details-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
}

.detail-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
    min-width: 30px;
}

.detail-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.detail-item p {
    opacity: 0.9;
}

.detail-item.price-highlight {
    background: rgba(193, 154, 107, 0.15);
    padding: var(--spacing-sm);
    border-radius: 8px;
    border: 2px solid var(--color-accent);
}

.detail-item.price-highlight .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 1;
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin-top: 0.3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.footer-brand-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--color-accent);
}

.footer-tour-title {
    font-size: 1.2rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-tagline {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--color-accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .highlights-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .distillery-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .day-body {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        justify-content: flex-start;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .highlights-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }
    
    .nav-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .brand-text {
        border-right: none;
        border-bottom: 1px solid var(--color-accent);
        padding-right: 0;
        padding-bottom: 0.5rem;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.7rem;
    }
    
    .brand-title {
        font-size: 0.85rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .overview-grid,
    .distilleries-grid,
    .included-grid,
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SMOOTH SCROLLING
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}
