/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* CSS Variables - Light Mode */
:root {
    --background: hsl(38, 33%, 96%);
    --foreground: hsl(25, 30%, 15%);
    --card: hsl(36, 30%, 93%);
    --card-foreground: hsl(25, 30%, 15%);
    --primary: hsl(18, 55%, 45%);
    --primary-foreground: hsl(38, 33%, 96%);
    --secondary: hsl(38, 25%, 88%);
    --secondary-foreground: hsl(25, 30%, 15%);
    --muted: hsl(36, 20%, 90%);
    --muted-foreground: hsl(25, 15%, 45%);
    --accent: hsl(150, 20%, 35%);
    --accent-foreground: hsl(38, 33%, 96%);
    --border: hsl(30, 20%, 85%);
    --radius: 0.75rem;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
}

/* Dark Mode */
.dark {
    --background: hsl(25, 30%, 10%);
    --foreground: hsl(38, 33%, 92%);
    --card: hsl(25, 25%, 14%);
    --card-foreground: hsl(38, 33%, 92%);
    --primary: hsl(18, 55%, 55%);
    --primary-foreground: hsl(25, 30%, 10%);
    --secondary: hsl(25, 20%, 20%);
    --secondary-foreground: hsl(38, 33%, 92%);
    --muted: hsl(25, 15%, 18%);
    --muted-foreground: hsl(30, 15%, 60%);
    --accent: hsl(150, 20%, 40%);
    --accent-foreground: hsl(38, 33%, 96%);
    --border: hsl(25, 15%, 22%);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Typography Classes */
.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

/* Color Classes */
.bg-background {
    background-color: var(--background);
}

.bg-card {
    background-color: var(--card);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-primary-10 {
    background-color: color-mix(in srgb, var(--primary) 10%, transparent);
}

.bg-primary-20 {
    background-color: color-mix(in srgb, var(--primary) 20%, transparent);
}

.bg-accent {
    background-color: var(--accent);
}

.text-foreground {
    color: var(--foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

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

.text-primary {
    color: var(--primary);
}

.border {
    border: 1px solid var(--border);
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-border {
    border-color: var(--border);
}

.border-primary-20 {
    border-color: color-mix(in srgb, var(--primary) 20%, transparent);
}

.border-accent-foreground-20 {
    border-color: color-mix(in srgb, var(--accent-foreground) 20%, transparent);
}

/* Layout Classes */
.min-h-screen {
    min-height: 100vh;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.w-72 {
    width: 18rem;
}

.w-14 {
    width: 3.5rem;
}

.w-5 {
    width: 1.25rem;
}

.w-px {
    width: 1px;
}

.h-14 {
    height: 3.5rem;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-px {
    height: 1px;
}

.h-3 {
    height: 0.75rem;
}

.h-5 {
    height: 1.25rem;
}

.w-3 {
    width: 0.75rem;
}

.w-24 {
    width: 6rem;
}

/* Spacing Classes */
.section-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-padding-compact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .section-padding-compact {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-left: 6rem;
        padding-right: 6rem;
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .section-padding-compact {
        padding-left: 6rem;
        padding-right: 6rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-14 {
    margin-bottom: 3.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Flexbox Classes */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

/* Grid Classes */
.grid-2col-responsive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-2col-responsive {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-3col-responsive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3col-responsive {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4col-responsive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-4col-responsive {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Border Radius */
.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-4-neg {
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
}

.z-10-neg {
    z-index: -1;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Opacity & Transitions */
.opacity-80 {
    opacity: 0.8;
}

.opacity-70 {
    opacity: 0.7;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-opacity {
    transition: opacity 300ms ease;
}

.transition-colors {
    transition: color 300ms ease;
}

.hover-opacity-80:hover {
    opacity: 0.8;
}

.hover\:text-primary:hover {
    color: var(--primary);
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

/* Line Height */
.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Letter Spacing */
.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.animate-on-scroll {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
}

.fade-in-left.animate-on-scroll {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
}

.fade-in-right.animate-on-scroll {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--background);
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.25);
}

.sticky-nav ul {
    list-style: none;
}

.sticky-nav ul li a {
    transition: color 300ms ease;
    display: block;
    padding: 0.5rem 0;
}

.sticky-nav ul li a:hover {
    color: var(--primary);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
    font-size: 1.5rem;
    margin-left: auto;
}

.nav-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 300ms ease;
    cursor: pointer;
    white-space: nowrap;
}

.nav-booking-btn:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .sticky-nav > div {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .sticky-nav ul {
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
        display: none;
    }

    .sticky-nav ul.active {
        display: flex;
        max-height: 500px;
    }

    .sticky-nav ul li {
        border-bottom: 1px solid var(--border);
        padding: 0;
        width: 100%;
    }

    .sticky-nav ul li a {
        padding: 1rem;
    }

    .sticky-nav ul li:last-child {
        border-bottom: none;
    }

    .nav-booking-btn {
        width: 100%;
        padding: 1rem;
        border-top: 1px solid var(--border);
        border-left: none;
        border-right: none;
        border-bottom: none;
        text-align: center;
		max-width: 80%; */
    	margin: 0 auto;
    }
}

.hero-title {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    margin-top: 1rem;
    font-weight: 300;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.md-w-96 {
    width: 18rem;
}

@media (min-width: 768px) {
    .md-w-96 {
        width: 24rem;
    }
}

/* Service Cards */
.service-card {
    transition: all 300ms ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--border);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .timeline-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 4rem;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
}

.timeline-dot {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: var(--primary);
    transform: translateX(-50%);
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: 0.25rem;
    }
}

.timeline-content {
    margin-left: 3rem;
    width: 100%;
    padding: 1rem;
}

@media (min-width: 768px) {
    .timeline-content {
        margin-left: 0;
        width: 50%;
        padding: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-left: 2.5rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 0;
        padding-right: 2.5rem;
        text-align: right;
    }
}

/* Icon sizing */
i.text-lg {
    font-size: 1.125rem;
}

i.text-primary {
    color: var(--primary);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 300ms ease;
}

a:hover {
    opacity: 0.8;
}

/* Touch-friendly buttons */
button, [role="button"] {
    min-height: 44px;
    min-width: 44px;
}

/* Improved touch targets for mobile */
@media (max-width: 767px) {
    button, a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .sticky-nav ul li a {
        min-height: auto;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .text-7xl {
        font-size: 2rem;
        line-height: 1.2;
    }

    .text-4xl {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .text-3xl {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .text-2xl {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .md-w-96 {
        width: 100%;
        max-width: 18rem;
    }

    .grid-4col-responsive {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-3col-responsive {
        gap: 1.5rem;
    }

    .grid-2col-responsive {
        gap: 1.5rem;
    }

    .section-padding {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .p-6 {
        padding: 1rem;
    }

    .p-8 {
        padding: 1.25rem;
    }

    .gap-8 {
        gap: 1rem;
    }

    .gap-6 {
        gap: 1rem;
    }

    .mt-10 {
        margin-top: 1.5rem;
    }

    .mb-14 {
        margin-bottom: 2rem;
    }

    .mb-12 {
        margin-bottom: 1.5rem;
    }

    .py-8 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .text-7xl {
        font-size: 1.75rem;
    }

    .text-4xl {
        font-size: 1.25rem;
    }

    .text-3xl {
        font-size: 1.125rem;
    }

    .text-2xl {
        font-size: 1rem;
    }

    .text-xl {
        font-size: 0.95rem;
    }

    .section-padding {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .max-w-6xl {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .timeline-content {
        margin-left: 2rem;
        padding: 0.75rem;
    }

    .timeline-line {
        left: 0.5rem;
    }

    .timeline-dot {
        left: 0.5rem;
    }
}

/* WordPress Block Editor Styles */
.wp-block-group {
    margin: 0;
    padding: 0;
}

.wp-block-image {
    margin: 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive containers */
@media (max-width: 767px) {
    [class*="container"] {
        overflow-x: hidden;
    }

    .relative {
        overflow: hidden;
    }
}

/* Touch-friendly card sizes */
@media (max-width: 767px) {
    .p-6 {
        padding: 1rem;
    }

    .rounded-2xl {
        border-radius: 0.75rem;
    }

    .gap-8 {
        gap: 1rem;
    }
}
