/* ===== Base & Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Geometric Shape Animations ===== */
.geo-shape {
    position: absolute;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

/* Hero Shapes */
.shape-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    animation-duration: 10s;
}

.shape-circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #c07abf 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.shape-square-1 {
    width: 180px;
    height: 180px;
    background: #f59e0b;
    top: 25%;
    left: 8%;
    transform: rotate(45deg);
    opacity: 0.08;
    animation-delay: 1s;
    animation-duration: 9s;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #f59e0b;
    top: 60%;
    right: 10%;
    opacity: 0.06;
    animation-delay: 3s;
    animation-duration: 11s;
}

.shape-ring-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid #c07abf;
    bottom: -50px;
    right: 15%;
    opacity: 0.06;
    animation-delay: 4s;
    animation-duration: 13s;
}

.shape-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #f59e0b 2px, transparent 2px);
    background-size: 20px 20px;
    top: 15%;
    left: 15%;
    opacity: 0.12;
    animation-delay: 0.5s;
    animation-duration: 7s;
}

/* About Section Shapes */
.shape-amber-rect-1 {
    width: 300px;
    height: 200px;
    background: #f59e0b;
    top: 10%;
    right: -50px;
    opacity: 0.08;
    transform: rotate(-15deg);
    animation-delay: 1s;
    animation-duration: 9s;
}

.shape-plum-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #4f1e4c;
    bottom: 5%;
    left: 10%;
    opacity: 0.15;
    animation-delay: 2.5s;
    animation-duration: 10s;
}

/* Visit Section Shapes */
.shape-white-circle-1 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 11s;
}

.shape-plum-arc-1 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 50px solid rgba(79, 30, 76, 0.2);
    bottom: -80px;
    right: 5%;
    animation-delay: 3s;
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Navbar ===== */
#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(45, 14, 44, 0.95);
    backdrop-blur-lg;
    border-bottom: 1px solid rgba(192, 122, 191, 0.15);
}

/* ===== Mobile Menu ===== */
.mobile-link {
    display: block;
    padding: 0.5rem 0;
}

/* ===== Button & Link Focus States ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== Selection Color ===== */
::selection {
    background: #f59e0b;
    color: #2d0e2c;
}

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

::-webkit-scrollbar-track {
    background: #2d0e2c;
}

::-webkit-scrollbar-thumb {
    background: #7b2d76;
    border-radius: 4px;
}

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

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .shape-circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .shape-square-1 {
        width: 120px;
        height: 120px;
    }
    
    .shape-ring-1 {
        width: 200px;
        height: 200px;
        border-width: 25px;
    }
    
    .shape-dots {
        width: 120px;
        height: 120px;
    }
}
