/* ===== CUSTOM GEOMETRIC SHAPES ===== */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}

.shape-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.15;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ecafd4 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: -50px;
    opacity: 0.2;
}

.shape-circle-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    border-radius: 50%;
    top: 40%;
    left: 5%;
    opacity: 0.12;
}

.shape-circle-4 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #a32672 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.12;
}

.shape-circle-5 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.shape-circle-6 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #a32672 0%, transparent 70%);
    border-radius: 50%;
    top: -80px;
    left: 10%;
    opacity: 0.15;
}

.shape-square-1 {
    width: 120px;
    height: 120px;
    background: #fbbf24;
    border-radius: 24px;
    top: 20%;
    right: 8%;
    transform: rotate(45deg);
    opacity: 0.1;
}

.shape-square-2 {
    width: 80px;
    height: 80px;
    background: #ecafd4;
    border-radius: 16px;
    bottom: 15%;
    right: 15%;
    transform: rotate(20deg);
    opacity: 0.15;
}

.shape-square-3 {
    width: 100px;
    height: 100px;
    background: #a32672;
    border-radius: 20px;
    bottom: -30px;
    right: 5%;
    transform: rotate(30deg);
    opacity: 0.12;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #fbbf24;
    top: 35%;
    left: 3%;
    opacity: 0.08;
    transform: rotate(-15deg);
}

.shape-triangle-2 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid #ecafd4;
    top: 20%;
    right: 5%;
    opacity: 0.1;
    transform: rotate(20deg);
}

.shape-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #fbbf24 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.15;
    bottom: 15%;
    right: 10%;
    border-radius: 50%;
}

/* ===== SCROLL REVEAL ===== */
.reveal-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-up {
        opacity: 0;
        transform: translateY(30px);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-30px);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(30px);
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: none;
    }
}

/* ===== MOBILE MENU ===== */
.menu-line {
    display: block;
}

#mobile-menu.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu.open .menu-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu.open .menu-line:nth-child(3) {
    width: 24px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR SCROLL EFFECT ===== */
header.scrolled {
    box-shadow: 0 4px 30px rgba(45, 9, 31, 0.3);
}

/* ===== BUTTON HOVER GLOW ===== */
a[href="#menu"]:hover,
a[href="#visit"]:hover {
    /* handled by Tailwind */
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* ===== SELECTION ===== */
::selection {
    background: #fbbf24;
    color: #2d091f;
}

/* ===== FORM FOCUS ===== */
input:focus,
textarea:focus {
    outline: none;
}

/* ===== IMAGE PLACEHOLDER RESIZE ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .shape-circle-1 {
        width: 250px;
        height: 250px;
    }

    .shape-square-1 {
        width: 60px;
        height: 60px;
    }
}
