/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Theme inspired by the physical business cards (sand + sea + teal ink) */
    --sand-50: #fbf6ee;
    --sand-100: #f3e6d3;
    --sand-200: #e7d1b1;
    --sand-300: #d9be96;
    --sea-400: #63c5d3;
    --sea-500: #2fb1c5;
    --teal-700: #1f6f6a;
    --teal-800: #165a56;
    --teal-900: #0f3e3b;

    --primary-color: var(--teal-700);
    --secondary-color: var(--sea-500);
    --accent-color: var(--sand-100);

    --text-dark: #113432;
    --text-light: #3f5e5b;
    --white: #FFFFFF;
    --light-bg: var(--sand-50);
    --border-color: rgba(15, 62, 59, 0.14);

    --shadow: 0 10px 30px rgba(15, 62, 59, 0.12);
    --shadow-hover: 0 16px 40px rgba(15, 62, 59, 0.18);

    --radius-lg: 18px;
    --radius-md: 12px;

    /* Optional: if you later add a real photo, set this to: url("assets/beach.jpg") */
    --site-bg-image: none;
}

/* Font pairing: elegant headings + clean body */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

body {
    font-family: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    /* Sand + sea gradient base, with optional photo layered in */
    background-image:
        var(--site-bg-image),
        radial-gradient(900px 420px at 88% 16%, rgba(99, 197, 211, 0.55), rgba(99, 197, 211, 0) 60%),
        radial-gradient(750px 420px at 10% 0%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 55%),
        linear-gradient(140deg, var(--sand-50) 0%, var(--sand-100) 45%, rgba(99, 197, 211, 0.18) 70%, rgba(47, 177, 197, 0.10) 100%);
    background-size: cover, auto, auto, auto;
    background-attachment: fixed, fixed, fixed, fixed;
}

main {
    padding-bottom: 2rem;
}

h1, h2, h3, h4 {
    letter-spacing: 0.2px;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(251, 246, 238, 0.78);
    border-bottom: 1px solid rgba(15, 62, 59, 0.08);
    box-shadow: 0 6px 20px rgba(15, 62, 59, 0.10);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.2px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: var(--secondary-color);
}

.nav-brand::before {
    content: '👣';
    margin-right: 0.5rem;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-dark);
    padding: 4.5rem 0 3rem;
    text-align: center;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
    background-image:
        radial-gradient(520px 240px at 88% 30%, rgba(99, 197, 211, 0.50), rgba(99, 197, 211, 0) 60%),
        radial-gradient(620px 320px at 18% 16%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 60%),
        linear-gradient(140deg, rgba(251, 246, 238, 0.92) 0%, rgba(243, 230, 211, 0.92) 55%, rgba(99, 197, 211, 0.16) 100%);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--teal-800);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-text {
    text-align: left;
    max-width: 100%;
    margin: 2rem 0;
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.hero-text p:last-of-type {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(31, 111, 106, 0.22);
}

.btn-primary:hover {
    background-color: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: rgba(251, 246, 238, 0.75);
    color: var(--primary-color);
    border-color: rgba(31, 111, 106, 0.35);
    box-shadow: 0 10px 24px rgba(15, 62, 59, 0.10);
}

.btn-secondary:hover {
    background-color: rgba(243, 230, 211, 0.92);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: transparent;
}

.intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.intro-card {
    background-color: rgba(251, 246, 238, 0.80);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.intro-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: transparent;
    color: var(--text-dark);
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
    background-image:
        radial-gradient(520px 240px at 90% 40%, rgba(99, 197, 211, 0.40), rgba(99, 197, 211, 0) 62%),
        linear-gradient(140deg, rgba(251, 246, 238, 0.92) 0%, rgba(243, 230, 211, 0.92) 60%, rgba(99, 197, 211, 0.12) 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--teal-800);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: rgba(251, 246, 238, 0.82);
    border: 1px solid rgba(15, 62, 59, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.service-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--teal-900);
    margin-left: 0.5rem;
    white-space: nowrap;
}

.service-tagline {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-note {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-duration {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background-color: transparent;
}

.info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.info-item {
    background-color: rgba(251, 246, 238, 0.82);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.opening-hours p {
    margin-bottom: 0.5rem;
}

.opening-hours strong {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-container {
    background-color: rgba(251, 246, 238, 0.82);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(15, 62, 59, 0.18);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.78);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(31, 111, 106, 0.65);
    box-shadow: 0 0 0 4px rgba(47, 177, 197, 0.16);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: transparent;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.map-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-placeholder {
    background-color: rgba(251, 246, 238, 0.82);
    border: 1px dashed rgba(15, 62, 59, 0.22);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.map-note {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
}

.map-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: transparent;
    color: var(--text-dark);
    text-align: center;
}

.cta-section .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 62, 59, 0.10);
    background-image:
        radial-gradient(560px 260px at 88% 30%, rgba(99, 197, 211, 0.45), rgba(99, 197, 211, 0) 60%),
        linear-gradient(140deg, rgba(251, 246, 238, 0.92) 0%, rgba(243, 230, 211, 0.92) 55%, rgba(99, 197, 211, 0.14) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--teal-800);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: rgba(15, 62, 59, 0.92);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(251, 246, 238, 0.92);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .intro h2,
    .page-header h1,
    .cta-section h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

