/* 
 * Oorja Spa - Professional Serenity
 * Theme: Deep Mahogany Wood, White Marble, and Soft Light
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --c-wood-dark: #1c110a;
    --c-wood-medium: #3d2b1f;
    --c-wood-light: #5c4033;

    --c-marble-white: #fdfcfb;
    --c-marble-grey: #e8e6e3;

    --c-accent-gold: #c5a059;
    --c-accent-gold-light: #e0ca9d;

    --c-text-main: #cebdb6;
    --c-text-light: #f9f7f6;
    --c-text-dark: #1a100c;

    --btn-gold-gradient: linear-gradient(135deg, #ae8b2d 0%, #f9f295 50%, #cfa333 100%);
    --bg-dark-gradient: linear-gradient(180deg, #1c110a 0%, #120b06 100%);

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-btn: 100px;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--c-wood-dark);
    color: var(--c-text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar-track {
    background: var(--c-wood-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--c-wood-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-accent-gold);
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--c-text-light);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--c-accent-gold);
    text-align: center;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: var(--c-accent-gold-light);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--c-text-main);
    max-width: 65ch;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-accent-gold);
    display: block;
    margin-bottom: 1rem;
}

/* Textures */
.texture-wood-slats {
    background-image: repeating-linear-gradient(90deg, #1c110a, #1c110a 10px, #251810 10px, #251810 20px);
}

.texture-marble {
    background-color: var(--c-marble-white);
    background-image: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.02) 21%, transparent 22%);
    color: var(--c-text-dark);
}

/* Layout */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.section {
    padding: 5rem 0;
    position: relative;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Logo Styling */
.logo-img {
    height: clamp(60px, 8vw, 95px);
    width: auto;
    transition: all 0.4s ease;
}

/* Components */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    gap: 0.75rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--btn-gold-gradient);
    color: #1a100c;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    border-color: var(--c-accent-gold);
    color: var(--c-accent-gold);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-5px);
}

/* Cards */
/* Cards & Containers */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--c-accent-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-marble {
    background: var(--c-marble-white);
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    color: var(--c-text-dark);
}

.card-marble h3,
.card-marble h2 {
    color: var(--c-wood-dark);
}

.card-marble p,
.card-marble li {
    color: #555;
}

/* Navigation & Mobile Menu */
.nav-toggle,
.mobile-menu {
    display: none;
}

/* Navigation */
/* Navigation - Redesigned for Premium Look */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    padding: 2rem 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(28, 17, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #e0d4d0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--c-accent-gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-accent-gold);
}

/* Hero */

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    /* Space for navbar */
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 17, 10, 0.95) 30%, rgba(28, 17, 10, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

/* Form Styles */
/* Form Styles */
input,
select,
textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--c-accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

/* Footer */
footer {
    background: #0f0907;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h4 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--c-accent-gold);
}

footer p {
    font-size: 0.95rem;
    color: #888;
}

/* Utility */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25D366;
}

/* Responsive Design - Mobile First Approach */

/* Container improvements for all devices */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Large Desktop (1440px+) */
@media(min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Tablet Landscape & Small Desktop (1024px - 1439px) */
@media(max-width: 1439px) and (min-width: 1024px) {
    .container {
        width: 92%;
    }
}

/* Tablet Portrait & Foldables (768px - 1023px) */
@media(max-width: 1023px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding-top: 160px;
        padding-bottom: 2rem;
        margin-left: 0;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

/* Mobile & Small Tablets (max-width: 991px) */
@media(max-width: 991px) {

    .nav-links,
    .navbar .btn {
        display: none !important;
    }

    /* Mobile Toggle & Menu */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 6000;
        padding: 0;
    }

    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: var(--c-accent-gold);
        transition: all 0.4s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        background: #120b06;
        z-index: 5500;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateX(100%);
        visibility: hidden;
    }

    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav-link {
        display: block;
        color: var(--c-marble-white);
        font-size: 2rem;
        font-family: var(--font-display);
        text-decoration: none;
        opacity: 0;
        transform: translateY(30px);
        margin-bottom: 2rem;
    }

    .mobile-menu.active .mobile-nav-link {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

    .mobile-menu.active .mobile-nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-menu.active .mobile-nav-link:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-menu.active .mobile-nav-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-menu.active .mobile-nav-link:nth-child(4) {
        transition-delay: 0.4s;
    }

    .mobile-cta {
        margin-top: 3rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Adjustments */
@media(max-width: 767px) {
    .nav-container {
        padding: 0 5%;
    }

    h1 {
        font-size: 2.25rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .logo-img {
        height: 65px;
    }

    .hero {
        align-items: flex-start;
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 180px;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.8rem;
    }

    .card,
    .card-marble {
        padding: 1.75rem 1.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Better spacing for trust badges on mobile */
    .fab-container {
        bottom: 15px;
        right: 15px;
    }

    .fab {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media(max-width: 480px) {
    .container {
        width: 95%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 55px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 300px;
    }

    .grid-2 {
        gap: 2rem;
    }

    .card,
    .card-marble {
        padding: 1.5rem 1.25rem;
    }

    /* Stack footer grid on very small screens */
    footer .grid-3 {
        text-align: center !important;
    }

    footer .grid-3>div {
        text-align: center !important;
    }
}

/* Landscape orientation adjustments */
@media(max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 3rem;
    }

    .section {
        padding: 3rem 0;
    }
}