@charset "UTF-8";

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    color: #333;
    background-color: #FFFBF7; /* Soft ivory white background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: #FF9A68; /* Soft Peach Orange for links */
    transition: color 0.3s ease;
}

a:hover {
    color: #FF7F50; /* Brighter Coral on hover */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Generous padding for open feel */
}

/* Helper Classes */
.section-spacing {
    padding: 32px 0; /* More spacing between sections */
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* Softer, slightly larger shadow */
    border-bottom: 1px solid #F0EFEF; /* Very light grey border */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper {
    flex-shrink: 0;
    margin-right: 30px;
}

.logo {
    height: 60px; /* Taller logo */
    object-fit: contain;
    width: auto;
}

.search-box {
    display: flex;
    border: 1px solid #FFDAB9; /* PeachPuff border */
    border-radius: 30px; /* Very rounded search box */
    overflow: hidden;
    background-color: #fff;
    flex-grow: 1;
    max-width: 500px; /* Wider search box */
    margin: 10px 0;
}

.search-box input {
    border: none;
    padding: 12px 22px; /* Increased input padding */
    font-size: 16px;
    outline: none;
    flex-grow: 1;
    background: transparent;
}

.search-box button {
    background-color: #FFB88D; /* Soft Peach Orange */
    color: #fff;
    border: none;
    padding: 12px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
    background-color: #FF9A68; /* Darker Peach Orange */
    transform: translateY(-1px);
}

/* Main Navigation */
.main-nav {
    background-color: #FAF8F6; /* Slightly off-white nav background */
    border-bottom: 1px solid #F0EFEF;
    padding: 15px 0; /* More nav padding */
    box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.03); /* Subtle inner shadow */
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased gap between nav items */
    flex-wrap: wrap;
}

.main-nav a {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700; /* Bolder nav items */
    color: #555;
    border-radius: 10px; /* More rounded nav items */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #FFB88D;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow on active/hover */
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #777;
    text-align: center;
    padding: 30px 0;
    font-size: 15px;
    border-top: 1px solid #F0EFEF;
    margin-top: 40px;
}

.footer p {
    margin-bottom: 8px;
}

/* Swiper Basic Styles (for hero carousel) */
.swiper-container {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 12px; /* More rounded container */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Prominent shadow */
    overflow: hidden;
    background-color: #fff;
    position: relative
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; /* For consistency */
}

.swiper-button-next, .swiper-button-prev {
    color: #FFB88D !important; /* Soft Peach Orange for buttons */
    background-color: rgba(255, 255, 255, 0.95); /* Nearly opaque background */
    border-radius: 50%;
    width: 50px; /* Larger buttons */
    height: 50px;
    line-height: 50px;
    font-size: 22px; /* Larger icons */
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 22px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.08); /* More pronounced scale effect */
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: #FFB88D; /* Soft Peach Orange for active bullet */
    opacity: 1;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-wrapper {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .logo {
        height: 50px;
    }

    .search-box {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        border-radius: 25px;
    }

    .search-box input {
        padding: 10px 18px;
        font-size: 15px;
    }
    .search-box button {
        padding: 10px 18px;
        font-size: 15px;
    }

    .main-nav ul {
        justify-content: space-around;
        gap: 0;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
    }

    .section-spacing {
        padding: 25px 0;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 18px !important;
    }

    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }
    .footer p {
        font-size: 13px;
        margin-bottom: 5px;
    }
}