/*==========================================
    GIHOC Distilleries - Animated Design Stylesheet
============================================*/

/*------------------------------------------
    CSS Variables
-------------------------------------------*/
:root {
    /* Color Palette */
    --primary-color: #0047ab; /* Rich blue */
    --secondary-color: #c9a66b; /* Gold accent */
    --dark-color: #111111; /* Near black */
    --light-color: #f8f9fa; /* Off-white */
    --grey-color: #6c757d; /* Neutral grey */
    --error-color: #dc3545; /* Error red */
    --success-color: #28a745; /* Success green */
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    /* Backgrounds */
    --bg-dark: #111111;
    --bg-light: #ffffff;
    --bg-muted: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #0047ab 0%, #002c68 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Sizes and Spacing */
    --header-height: 100px;
    --section-padding: 100px;
    --container-padding: 15px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Effects */
    --transition-slow: 1s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-medium: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------
    Global Reset and Base Styles
-------------------------------------------*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 5.6rem;
}

h2 {
    font-size: 4.2rem;
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.6rem;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.6rem;
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    outline: none;
    background: transparent;
}

/*------------------------------------------
    Utility Classes
-------------------------------------------*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

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

.light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
    opacity: 0;
}

.visible {
    visibility: visible;
    opacity: 1;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.8rem;
    max-width: 700px;
    margin-bottom: 4rem;
}

.blur-bg {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/*------------------------------------------
    Buttons
-------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.primary-btn:hover {
    background-color: var(--text-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.ghost-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.ghost-btn:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.btn.dark {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon i {
    transition: transform var(--transition-fast);
}

.btn-icon:hover i {
    transform: translateX(5px);
}

/*------------------------------------------
    Loader
-------------------------------------------*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-container img {
    height: 8rem;
    margin: 0 auto;
}

.loading-bar {
    width: 20rem;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    width: 0;
    background-color: var(--secondary-color);
    transition: width 4s cubic-bezier(0.19, 1, 0.22, 1);
}

/*------------------------------------------
    Custom Cursor
-------------------------------------------*/
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, border 0.3s;
}

/*------------------------------------------
    Navigation
-------------------------------------------*/
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.main-nav.scrolled {
    background-color: rgba(17, 17, 17, 0.9);
}

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

.logo {
    z-index: 1001;
}

.logo img {
    height: 5rem;
    transition: all var(--transition-fast);
}

.main-nav.scrolled .logo img {
    height: 4rem;
}

.menu-toggle {
    z-index: 1001;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2rem;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all var(--transition-medium);
}

.menu-toggle.active .hamburger span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .hamburger span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.97);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    text-align: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 5rem;
}

.nav-link {
    display: inline-block;
    font-size: 3.6rem;
    font-family: var(--font-heading);
    color: var(--text-light);
    padding: 1rem 0;
    margin: 1rem 0;
    position: relative;
    transition: all var(--transition-medium);
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 12rem;
    opacity: 0.05;
    pointer-events: none;
    white-space: nowrap;
    transition: all var(--transition-medium);
    z-index: -1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 0.1;
}

.nav-footer {
    margin-top: 5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-muted);
    font-size: 1.4rem;
}

/*------------------------------------------
    Hero Section
-------------------------------------------*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text {
    max-width: 650px;
    color: var(--text-light);
}

.hero-title {
    font-size: 7.2rem;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-text {
    margin-bottom: 1rem;
}

.scroll-line {
    width: 2px;
    height: 5rem;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--secondary-color);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/*------------------------------------------
    Heritage Section
-------------------------------------------*/
.heritage-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    position: relative;
}

.section-intro {
    margin-bottom: 8rem;
}

.timeline-container {
    position: relative;
    margin: 8rem 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--light-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 4rem 0;
    position: relative;
    width: 50%;
    background-color: inherit;
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: attr(data-year);
    position: absolute;
    width: 8rem;
    height: 8rem;
    right: -4rem;
    top: 0;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1;
    font-family: var(--font-heading);
    transform: scale(0);
    transition: all var(--transition-medium) 0.3s;
}

.timeline-item:nth-child(even)::after {
    left: -4rem;
    right: auto;
}

.timeline-item.animate::after {
    transform: scale(1);
}

.timeline-content {
    padding: 3rem;
    background: #fff;
    position: relative;
    border-radius: 0.8rem;
    box-shadow: var(--box-shadow);
    margin-right: 6rem;
    transform: translateX(-50px);
    opacity: 0;
    transition: all var(--transition-medium) 0.6s;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 6rem;
    margin-right: 0;
    transform: translateX(50px);
}

.timeline-item.animate .timeline-content {
    transform: translateX(0);
    opacity: 1;
}

.timeline-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.heritage-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 8rem 0;
}

.gallery-image {
    height: 40rem;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.gallery-image:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

.stats-container {
    padding: 8rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -2rem;
    font-size: 3rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*------------------------------------------
    Products Section
-------------------------------------------*/
.products-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-color);
    position: relative;
}

.products-categories {
    margin-bottom: 6rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    color: var(--text-dark);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 3rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

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

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

.product-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.product-image-container {
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.product-image {
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    height: 100%;
    z-index: 2;
    transition: all var(--transition-medium);
}

.product-item:hover .placeholder-bottle {
    transform: translateY(-10px) scale(1.05);
}

.liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--secondary-color);
    transition: all var(--transition-medium);
}

.liquid::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--secondary-color);
    filter: blur(10px);
}

.product-item:hover .liquid {
    height: 50%;
    background-color: #d4b67e;
}

.product-details {
    padding: 2.5rem;
    text-align: center;
}

.product-name {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-type {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.product-link i {
    transition: transform var(--transition-fast);
}

.product-link:hover {
    color: var(--secondary-color);
}

.product-link:hover i {
    transform: translateX(5px);
}

.product-spotlight {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.spotlight-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.spotlight-image-container {
    flex: 1;
    position: relative;
}

.spotlight-image {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.featured-product-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    transform: rotate3d(0, 1, 0, 10deg);
    transition: all var(--transition-medium);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}

.spotlight-image:hover .featured-product-image {
    transform: rotate3d(0, 1, 0, 0deg);
}

.spotlight-info {
    flex: 1;
}

.spotlight-label {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 3rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.spotlight-title {
    font-size: 3.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.spotlight-description {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.spotlight-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

/*------------------------------------------
    Distillery Section
-------------------------------------------*/
.distillery-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.distillery-content {
    margin-bottom: 8rem;
}

.process-steps {
    margin: 6rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.7;
    min-width: 8rem;
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.distillery-cta {
    margin-top: 4rem;
    text-align: center;
}

.distillery-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 20rem;
    grid-gap: 0;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/*------------------------------------------
    Testimonials Section
-------------------------------------------*/
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.testimonials-slider {
    padding-bottom: 6rem;
}

.testimonial-card {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 1.4rem;
    color: var(--text-muted);
}

/*------------------------------------------
    Newsletter Section
-------------------------------------------*/
.newsletter-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text .section-title {
    color: var(--text-light);
}

.newsletter-form-container {
    flex: 1;
}

.newsletter-form {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
}

.form-group {
    display: flex;
    margin-bottom: 2rem;
}

.form-group input {
    flex: 1;
    height: 5rem;
    padding: 0 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 1.6rem;
}

.submit-btn {
    height: 5rem;
    padding: 0 3rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-consent input {
    margin-top: 0.5rem;
}

.form-consent label {
    font-size: 1.4rem;
    color: var(--text-dark);
}

/*------------------------------------------
    Contact Section
-------------------------------------------*/
.contact-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000047' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-content {
    display: flex;
    gap: 6rem;
}

.contact-info {
    flex: 1;
}

.contact-description {
    margin-bottom: 4rem;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.contact-form .form-group {
    display: block;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

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

.contact-form textarea {
    height: 15rem;
    resize: none;
}


/*------------------------------------------
    Scroll Progress
-------------------------------------------*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    z-index: 9999;
}

/*------------------------------------------
    Back to Top Button
-------------------------------------------*/
.back-top-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 99;
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/*------------------------------------------
    Age Verification Modal
-------------------------------------------*/
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-verification-content {
    max-width: 500px;
    width: 90%;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.age-logo {
    margin-bottom: 2rem;
}

.age-logo img {
    height: 6rem;
    margin: 0 auto;
}

.age-verification-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.age-verification-content p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.age-question {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 2rem 0;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.age-yes {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.age-no {
    background-color: var(--error-color);
    color: var(--text-light);
}

.hidden {
    display: none !important;
}

/* Split Text Animation */
.split-text .word {
    display: inline-block;
    overflow: hidden;
}

.split-text .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.split-text.animate .char {
    transform: translateY(0);
}

/*------------------------------------------
    Image Overlays and Effects
-------------------------------------------*/
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

/* Liquid Animations */
.liquid-animation {
    position: relative;
    overflow: hidden;
}

.liquid-drop {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: -10px;
    opacity: 0.8;
    animation: drop 2s linear infinite;
}

@keyframes drop {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(0.8) translateY(20px);
    }
    100% {
        transform: scale(0.4) translateY(40px);
        opacity: 0;
    }
}

/* Reveal Animations */
.reveal {
    position: relative;
    overflow: hidden;
}

.reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.animate::after {
    transform: translateX(100%);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}