/* 
 * Main stylesheet for domain
 * Color Palette:
 * - Velvet Coral: #f45161
 * - Lavender Fog: #d7d1ff
 * - Deep Sea Ink: #161b33
 * - Arctic Foam: #f3fcfb
 * - Matcha Dust: #c2d3b5
 */

/* Base styles & reset */
:root {
    --coral: #f45161;
    --lavender: #d7d1ff;
    --deep-blue: #161b33;
    --light-teal: #f3fcfb;
    --matcha: #c2d3b5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--deep-blue);
    background-color: var(--light-teal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--coral);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--deep-blue);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.section {
    padding: 80px 0 50px;
    margin-top: -60px;
    padding-top: 130px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--coral);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--deep-blue);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--lavender);
    color: var(--deep-blue);
}

.btn-secondary:hover {
    background-color: var(--deep-blue);
    color: white;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
    padding: 20px 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--light-teal) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Introduction Section */
.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.intro-feature {
    text-align: center;
    padding: 20px;
}

.intro-feature img, .intro-feature i {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 30px;
}

/* Remove step numbers */

/* Testimonials Section */
.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* For Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* For Chrome, Safari and Opera */
}

.testimonial {
    min-width: 300px;
    width: 100%;
    scroll-snap-align: center;
    padding: 20px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 4px 4px 5px rgba(0,0,0,0.05);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-left: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

/* Booking Form Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-info {
    align-self: center;
}

.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
    background-color: var(--light-teal);
}

.form-control:focus {
    border-color: var(--coral);
    outline: none;
}

.form-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #777;
    transition: var(--transition);
    pointer-events: none;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    transform: translateY(-25px);
    font-size: 0.8rem;
    color: var(--coral);
    background-color: white;
    padding: 0 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
}

.faq-item.active .faq-question:after {
    content: '−';
}

.faq-answer {
    background-color: var(--light-teal);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Footer */
.site-footer {
    background-color: var(--deep-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact h4, .footer-links h4 {
    color: var(--coral);
    margin-bottom: 20px;
}

.footer-contact ul li, .footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact a, .footer-links a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-contact a:hover, .footer-links a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--deep-blue);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-policy-link {
    color: var(--lavender);
    text-decoration: underline;
}

/* Policy Pages Styling */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.policy-content h2 {
    margin-top: 40px;
}

.policy-content h3 {
    margin-top: 30px;
}

.policy-content ul, .policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li, .policy-content ol li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 80px 20px;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--matcha);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 2000;
    }
    
    .menu-toggle input {
        display: none;
    }
    
    .menu-toggle label {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        width: 35px;
        height: 25px;
        justify-content: space-between;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--deep-blue);
        transition: var(--transition);
    }
    
    #menu-toggle:checked ~ label span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    
    #menu-toggle:checked ~ label span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ label span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1500;
        padding-top: 80px;
    }
    
    #menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .testimonial {
        min-width: 100%;
    }
}
