/* ---------------------------------------------------
   GLOBAL RESET & BASE STYLES
--------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Tahoma, sans-serif;
    background: #f7f7f7;
    color: #333;
    overflow-x: hidden;
}

/* Brand Colors */
:root {
    --teal-dark: #00363a;
    --teal: #00a0a0;
    --teal-light: #aef3f3;
    --gold: #d4af37;
    --white-soft: #e8ffff;
}

/* ---------------------------------------------------
   HEADER
--------------------------------------------------- */

.site-header {
    padding: 24px 0 14px;
    text-align: center;
    background: var(--teal-dark);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-title {
    font-size: 32px;
    font-weight: normal;
    color: var(--white-soft);
    letter-spacing: 1px;
}

/* NAVIGATION */

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: var(--white-soft);
    font-size: 16px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.main-nav a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.main-nav .active {
    background: var(--gold);
    color: #00363a;
}

/* ---------------------------------------------------
   HERO SECTIONS (GLOBAL)
--------------------------------------------------- */

.hero,
.hero-vortex,
.services-hero,
.booking-hero,
.chakra-hero,
.hypnosis-hero,
.forms-hero,
.contact-hero {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #06141a 0%, #02070a 55%, #000000 100%);
    color: var(--white-soft);
    overflow: hidden;
}

/* Vortex Background */
.vortex-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vw;
    transform: translate(-50%, -50%);
    background: url('vortex.png') center/contain no-repeat;
    opacity: 0.35;
    animation: spin 22s linear infinite;
    z-index: 1;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-centered {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-centered h1 {
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 1px;
}

.hero-subtext,
.subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: #d4f7f7;
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */

.btn,
.btn-secondary,
.cta-button {
    display: inline-block;
    padding: 12px 26px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    margin-top: 20px;
}

/* Primary Button */
.btn,
.cta-button {
    background: var(--teal);
    color: #fff;
}

.btn:hover,
.cta-button:hover {
    background: #00c2c2;
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    background: var(--gold);
    color: #00363a;
}

.btn-secondary:hover {
    background: #f5d76e;
}

/* CTA Box */
.cta-box {
    text-align: center;
    margin-top: 40px;
}

/* ---------------------------------------------------
   SECTIONS
--------------------------------------------------- */

.section {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
}

.section-light {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* ---------------------------------------------------
   CARDS & GRID
--------------------------------------------------- */

.cards-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 30px;
}

.card {
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    text-align: left;
}

.card h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* ---------------------------------------------------
   CHAKRA ICONS
--------------------------------------------------- */

.chakra-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 20px auto;
}

.chakra-spin {
    animation: chakraSpin 8s linear infinite;
}

@keyframes chakraSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------------------------------------------------
   SERVICE BLOCKS
--------------------------------------------------- */

.service-block {
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.service-block h2 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* ---------------------------------------------------
   FORMS PAGE
--------------------------------------------------- */

.form-block {
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */

.site-footer {
    text-align: center;
    padding: 18px;
    background: var(--white-soft);
    color: var(--teal-dark);
    font-size: 14px;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (max-width: 768px) {
    .hero-centered h1 {
        font-size: 26px;
    }

    .hero-subtext,
    .subtitle {
        font-size: 16px;
    }

    .site-title {
        font-size: 26px;
    }

    .main-nav {
        gap: 12px;
    }

    .chakra-icon {
        width: 60px;
        height: 60px;
    }
}
