/* Base Styles */
:root {
    --primary-color: #102C34;
    --gold: #B4A164;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --header-bg: rgba(0, 0, 0, 0.7);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* Header Base Layout */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Logo Styles */
.logo {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo .logo-large {
    opacity: 1;
    transform: scale(0.1);
}

.logo .logo-small {
    opacity: 0;
    transform: scale(0.05);
}

.logo.scrolled .logo-large {
    opacity: 0;
    transform: scale(0.1);
}

.logo.scrolled .logo-small {
    opacity: 1;
    transform: scale(0.05);
}

/* Main Content Layout */
.main-content {
    transition: filter 0.5s ease;
}

/* Snap Sections */
.snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
}

.snap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

/* Content Section */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.brand-name {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--gold);
}

/* Button Styles */
.discover-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    header {
        padding: 1rem;
    }

    .scroll-indicator {
        right: 1rem;
    }

    .logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
        transition: width 0.3s ease, opacity 0.3s ease;
    }
}