/* style.css */
:root {
    --special: #CCA850;
    --special-blue: #2563eb
}


/* Base styles for the body */
body {
    font-family: sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fixed Header */
.header {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between; /* Changed from space-between */
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    flex-wrap: wrap; /* Added to allow items to wrap on smaller screens */
    background-color: #ffffff;
}

/* Header - Medium screens and up */
@media (min-width: 768px) {
    .header {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        justify-content: space-between; /*Re-Added*/
    }
}

/* Logo */
.logo {
    display: flex; /* For vertical alignment */
    align-items: center;
    height: 3rem;  /* Or whatever height you want */
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.logo img {
    height: 100%; /* Make image height fit the logo container */
    width: auto;  /* Maintain aspect ratio */
}

/* Navigation List */
.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
  /* Added to nav-list to control wrapping*/
.nav-list{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation Links */
.nav-link {
    color: black;
    font-weight: 500;
    text-decoration: none;
}

/* Main Content Padding for Fixed Header */
.main-content {
    padding-top: 5rem;
}

/* Section Container */
.section-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Section Container - Medium screens and up */
@media (min-width: 768px) {
    .section-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Hero Section Layout */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/* Hero Section Layout - Medium screens and up */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
    }
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    order: 2;
    width: 100%;
}

/* Hero Image Wrapper - Medium screens and up */
@media (min-width: 768px) {
    .hero-image-wrapper {
        width: 50%;
        order: 1;
    }
}

/* Hero Image */
.hero-image {
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 28rem;
    height: auto;
    object-fit: cover;
}

/* Hero Image - Medium screens and up */
@media (min-width: 768px) {
    .hero-image {
        max-width: 100%;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    text-align: center;
    order: 1;
    width: 100%;
}

/* Hero Content Wrapper - Medium screens and up */
@media (min-width: 768px) {
    .hero-content-wrapper {
        width: 50%;
        text-align: left;
        order: 2;
    }
}

/* Hero Heading */
.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

/* Hero Heading - Medium screens and up */
@media (min-width: 768px) {
    .hero-heading {
        font-size: 3.75rem;
    }
}

/* Hero Heading Span (highlighted text) */
.hero-heading-highlight {
    color: var(--special);
}

/* Hero Paragraph */
.hero-paragraph {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Paragraph - Medium screens and up */
@media (min-width: 768px) {
    .hero-paragraph {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Primary Button */
.btn-primary {
    background-color: var(--special);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease-in-out;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
}

.button-center-wrapper {
    text-align: center;
}

/* Section Heading */
.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Section Heading - Medium screens and up */
@media (min-width: 768px) {
    .section-heading {
        font-size: 3rem;
    }
}

/* Grid Layout for Testimonials and Features */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Grid Layout - Medium screens and up */
@media (min-width: 768px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grid Layout - Large screens and up */
@media (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Style */
.card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    font-weight: 600;
    color: var(--special);
}

/* Feature Card Specifics */
.feature-card {
    text-align: center;
}

.feature-icon-wrapper {
    color: var(--special);
    margin-bottom: 1rem;
}

.feature-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 3rem;
    width: 3rem;
}

.feature-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Contact Section (simple placeholder for now) */
.contact-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-paragraph {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-email {
    color: var(--special-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    border-top: 1px solid #e5e7eb;
}

