/* Base Styles & Variables */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gold: #c0a062;
    --color-gold-light: #d4b87a;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-light-gray: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-white);
    background-color: transparent;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--color-gold);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(192, 160, 98, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.cta-nav {
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
}

.video-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.loaded {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1:nth-child(1) { animation-delay: 0.3s; }
.hero h1:nth-child(2) { animation-delay: 0.6s; }

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    font-size: 1.4rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator i {
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

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

/* About Scent Section */
.about-scent {
    padding: 12rem 0;
    background-color: var(--color-dark);
    position: relative;
}

.scent-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.fragrance-pyramid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 6rem;
}

.pyramid-level {
    flex: 1;
    max-width: 300px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pyramid-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pyramid-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pyramid-level:hover::before {
    animation: shine 1s;
}

.pyramid-level h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.pyramid-level h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.pyramid-level:hover h3::after {
    width: 100%;
}

.pyramid-level ul {
    margin-top: 2rem;
}

.pyramid-level ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    opacity: 0.9;
}

.pyramid-level ul li i {
    margin-right: 1rem;
    color: var(--color-gold);
    font-size: 1.4rem;
}

.pyramid-level:hover ul li {
    transform: translateX(5px);
}

.pyramid-level:hover ul li i {
    transform: scale(1.2);
}

/* Collection Section */
.collection {
    padding: 12rem 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.collection::before {
    display: none;
}

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

.bottle-item {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.bottle-item::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: linear-gradient(45deg, rgba(192, 160, 98, 0.1), transparent);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.bottle-item:hover::before {
    opacity: 1;
}

.bottle-img {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.bottle-img img {
    transition: transform 0.5s ease;
}

.bottle-item h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.bottle-item p {
    font-size: 1.6rem;
    color: var(--color-light-gray);
}

.bottle-item.visible h3,
.bottle-item.visible p {
    animation: fadeInUp 0.8s ease forwards;
}

.bottle-item:hover h3 {
    color: var(--color-gold-light);
}

.bottle-item:hover p {
    color: var(--color-white);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Brand Section */
.about-brand {
    padding: 12rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-brand.animate {
    opacity: 1;
}

.about-brand::after {
    content: '';
    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='%23c0a062' fill-opacity='0.1'%3E%3Cpath d='M30 0h30v30H30zM0 30h30v30H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
    animation: patternRotate 20s linear infinite;
}

@keyframes patternRotate {
    0% {
        transform: rotate(0deg);
        background-position: 0 0;
    }
    50% {
        transform: rotate(180deg);
        background-position: 30px 30px;
    }
    100% {
        transform: rotate(360deg);
        background-position: 0 0;
    }
}

.brand-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-content p {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-light-gray);
    position: relative;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.brand-content p.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-content p::before,
.brand-content p::after {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    position: absolute;
    opacity: 0.3;
}

.brand-content p::before {
    top: -2rem;
    left: 0;
}

.brand-content p::after {
    bottom: -4rem;
    right: 0;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* CTA Section */
.cta-section {
    padding: 12rem 0;
    background-color: var(--color-black);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 4.2rem;
    margin-bottom: 4rem;
    color: var(--color-white);
}

.newsletter-text {
    margin: 3rem 0 2rem;
    font-size: 1.6rem;
    color: var(--color-light-gray);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-white);
    font-size: 1.4rem;
    border-radius: 30px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold-light);
}

.newsletter-form button {
    padding: 1.2rem 3rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: var(--color-dark);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.copyright {
    font-size: 1.4rem;
    color: var(--color-light-gray);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4.8rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .fragrance-pyramid {
        flex-direction: column;
        align-items: center;
    }
    
    .pyramid-level {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .cta-nav {
        margin: 2rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .scent-description {
        font-size: 1.6rem;
    }
    
    .bottles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bottle-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-section h2 {
        font-size: 3.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .about-brand {
        padding: 8rem 0;
    }
    
    .brand-content p {
        font-size: 1.8rem;
    }
    
    .fragrance-pyramid {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .cta-section h2 {
        font-size: 2.8rem;
    }
} 