/* ============================================
   VEDANTA SPA - COMPREHENSIVE STYLESHEET
   ============================================ */

/* Root Variables */
:root {
    --black: #070707;
    --dark-gray: #121212;
    --gold-light: #f1dfaf;
    --gold-primary: #d4af37;
    --gold-dark: #a67c00;
    --gold-soft: #c5a059;
    --gold-gradient: linear-gradient(135deg, #f1dfaf 0%, #d4af37 45%, #a67c00 100%);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

.logo-circle img {
    width: 80%;
    border-radius: 50%;
    object-fit: cover;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 215, 0, 0.1);
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    border-radius: 10px;
    animation: loadingProgress 1.5s ease forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--gold-primary);
    color: var(--black);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
header {
    background-color: rgba(0, 0, 0, 0.98);
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(15px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============ NAVIGATION ============ */
.nav-section,
.desktop-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============ ACTION SECTION ============ */
.action-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-btn {
    background: var(--gold-primary);
    color: var(--black);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.book-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============ MOBILE MENU ============ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--gold-light);
}

.main-nav {
    display: none;
}

/* ============ MAIN CONTENT ============ */
main {
    padding-top: 140px;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.55) 100%), url('../images/hero_main.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-page {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 1400px;
}

.hero h1,
.hero-page h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 8vw, 80px);
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 2s forwards;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2), 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-page h1 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 20px);
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 2.3s forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: var(--gold-primary);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--gold-primary);
    display: inline-block;
    font-size: 14px;
}

.btn:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.6s forwards;
}

/* ============ SECTION STYLING ============ */
section {
    padding: 80px 0;
    position: relative;
}

.section-bg {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(7, 7, 7, 0.98) 100%);
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    max-width: 700px;
    margin: -30px auto 60px;
    font-size: 16px;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 5px;
}

/* ============ GRIDS ============ */
.rooms-grid,
.treatments-grid,
.philosophy-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

/* ============ CARDS ============ */
.card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-body h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Value Cards */
.value-card {
    padding: 30px !important;
    text-align: center !important;
}

.value-icon {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

/* Treatment Cards */
.treatment-card {
    text-align: center;
    padding: 40px 30px !important;
}

.treatment-icon {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.treatment-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.treatment-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-dim);
}

.treatment-list li:last-child {
    border-bottom: none;
}

.price {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ============ SHIMMER EFFECT ============ */
.shimmer-gold {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(212, 175, 55, 0) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: metallicShimmer 6s infinite linear;
}

@keyframes metallicShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============ FOOTER ============ */
footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-about p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-grid {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--black);
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    gap: 15px;
}

.footer-contact i {
    color: var(--gold-primary);
    min-width: 20px;
}

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.copyright a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* ============ FLOATING CONTACT BUTTONS ============ */
.floating-contacts {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn.phone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .floating-contacts {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ============ ANIMATIONS ============ */
.stagger-container>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-container>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-container>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-container>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-container>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-container>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-container>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Ken Burns effect */
@keyframes kenBurnsOrganic {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    33% {
        transform: scale(1.08) translate(-1%, 1.5%);
    }

    66% {
        transform: scale(1.05) translate(2%, -1%);
    }

    100% {
        transform: scale(1.0) translate(0, 0);
    }
}

.ken-burns {
    animation: kenBurnsOrganic 45s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablet */
@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        background: rgba(0, 0, 0, 0.98);
        padding: 20px;
        border-top: 2px solid var(--gold-primary);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
        backdrop-filter: blur(15px);
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 0.3s ease;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active {
        display: flex;
        transform: scaleY(1);
    }

    .main-nav .nav-link {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        top: 25px;
    }

    main {
        padding-top: 110px;
    }

    .header-wrapper {
        padding: 0 10px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .action-section {
        gap: 10px;
    }

    .book-btn {
        padding: 8px 15px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .rooms-grid,
    .treatments-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-link {
        font-size: 12px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero h1,
    .hero-page h1 {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .gold-line {
        width: 60px;
        height: 2px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Print styles */
@media print {

    .top-bar,
    header,
    .mobile-menu-btn {
        display: none;
    }

    main {
        padding-top: 0;
    }

    section {
        page-break-inside: avoid;
    }
}