/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #050505; /* Vantablack */
    --surface-color: #121212;
    --gold: #d4af37; /* Metallic Gold */
    --gold-dim: #8a7020;
    --text-main: #e0e0e0;
    --text-dim: #888888;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor active */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- NOISE TEXTURE --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 999;
    opacity: 0.07;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: transparent;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

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

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5,5,5,0.9), transparent);
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(30,30,30,0.4) 0%, rgba(5,5,5,1) 80%);
    z-index: -1;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.description {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-content h1 { font-size: 5rem; }
}

/* Button Group */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cta-group { flex-direction: row; gap: 2rem; }
}

/* Button 1: Initiate Protocol */
.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--gold);
    z-index: -1;
    transition: width 0.4s var(--easing);
}

.cta-btn:hover {
    color: #000;
}
.cta-btn:hover::before {
    width: 100%;
}

/* Button 2: Instagram Luxury Button */
.insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #AA8A2E 100%);
    color: #050505; 
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    border: 1px solid #FFD700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.insta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: transparent; 
    color: var(--gold); 
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: var(--gold);
    animation: scrollGrow 2s infinite;
}

@keyframes scrollGrow {
    0% { transform-origin: top; transform: scaleY(0); }
    50% { transform-origin: top; transform: scaleY(1); }
    51% { transform-origin: bottom; transform: scaleY(1); }
    100% { transform-origin: bottom; transform: scaleY(0); }
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 8rem 10%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s var(--easing), box-shadow 0.5s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: var(--gold);
}

.gallery-item:nth-child(1) { grid-column: 1 / 13; height: 300px; }
.gallery-item:nth-child(2) { grid-column: 1 / 13; height: 300px; }
.gallery-item:nth-child(3) { grid-column: 1 / 13; height: 300px; }

@media (min-width: 768px) {
    .gallery-item:nth-child(1) { grid-column: 1 / 5; height: auto; }
    .gallery-item:nth-child(2) { grid-column: 5 / 13; height: auto; }
    .gallery-item:nth-child(3) { grid-column: 3 / 11; margin-top: -50px; z-index: 2; height: auto; }
}

.image-wrapper { width: 100%; height: 100%; position: relative; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.5s;
    display: block;
}

.gallery-item:hover img { filter: grayscale(0%) contrast(100%); }

.overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem;
    background: linear-gradient(to top, #000, transparent);
    opacity: 0; transform: translateY(20px); transition: all 0.4s;
}

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

/* --- CONTACT (Updated for Stacking) --- */
.contact-box {
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.02);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Gap between Phone and Email */
    margin: 2rem 0;
}

.gold-link {
    display: inline-block;
    color: var(--gold);
    font-size: 1.2rem;
    text-decoration: none;
    font-family: var(--font-heading);
    word-break: break-all;
    transition: opacity 0.3s;
}

.gold-link:hover { opacity: 0.8; }
.gold-link i { margin-right: 10px; }

@media (min-width: 768px) {
    .gold-link { font-size: 2rem; }
}

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

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icon:hover { color: var(--gold); }

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* --- ANIMATION UTILITIES --- */
.hidden-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--easing);
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
}
