@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #0a0a0a;
    --secondary: #f5f5f5;
    --accent: #c5a059;
    --text-main: #1a1a1a;
    --text-muted: #666666;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Custom Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-gold {
    color: var(--accent);
}

.bg-gold {
    background-color: var(--accent);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(10, 10, 10, 1) 100%);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Image Hover Scale */
.img-hover {
    overflow: hidden;
}

.img-hover img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-hover:hover img {
    transform: scale(1.03);
}

.btn-premium {
    position: relative;
    padding: 12px 32px;
    background: var(--primary);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-premium:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
}

.gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 85vw;
}

@media (min-width: 768px) {
    .gallery-item {
        width: 450px;
        scroll-snap-align: start;
    }
}