/* =========================================
   ORIEL LIVING - MAIN STYLESHEET
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    transition: all 0.3s ease;
}

/* =========================================
   TOP BAR
   ========================================= */

.top-bar {
    background: #3f5f4a;
    color: #fff;
    padding: 8px 5%;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-contact a:hover {
    opacity: 0.8;
}

/* =========================================
   MAIN HEADER
   ========================================= */

.main-header {
    background: #fff;
    padding: 18px 5%;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #3f5f4a;
}

.logo span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-align: center;
    margin-top: -4px;
    color: #777;
}

/* =========================================
   NAVIGATION
   ========================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.main-nav a:hover {
    color: #3f5f4a;
}

.enquire-btn {
    background: #3f5f4a;
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 4px;
}

.enquire-btn:hover {
    background: #294534;
}

/* =========================================
   HERO
   ========================================= */

.hero {
    width: 100%;
    aspect-ratio: 1819 / 541;
    background-image: url("images/hero-banner.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero img {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    display: none;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    max-width: 700px;
}

.hero-content p {
    margin-top: 20px;
    font-size: 19px;
    max-width: 550px;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    background: #fff;
    color: #3f5f4a;
    padding: 13px 25px;
    border-radius: 4px;
    font-weight: 600;
}

.hero-btn:hover {
    background: #f2f2f2;
}

/* =========================================
   WELCOME SECTION
   ========================================= */

.welcome-section {
    background: #fff;
    padding: 65px 5% 45px;
    text-align: center;
}

.welcome-inner {
    max-width: 900px;
    margin: auto;
}

.welcome-section h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: #3f5f4a;
    margin-bottom: 18px;
}

.welcome-section p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.explore-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    background: #3f5f4a;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.explore-btn:hover {
    background: #294534;
}

/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
    padding: 80px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    color: #3f5f4a;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
    color: #666;
}

/* =========================================
   CATEGORY CARDS
   ========================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.category-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.category-card-content {
    padding: 20px;
    text-align: center;
}

.category-card h3 {
    font-family: Georgia, serif;
    font-size: 23px;
    color: #3f5f4a;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: #666;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {

    background: #f7f8f5;

    padding: 30px;

    text-align: center;

    border-radius: 18px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

}

.testimonial-stars {
    color: #c59d5f;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    font-style: italic;
}

.testimonial-name {
    margin-top: 18px;
    font-weight: 600;
    color: #3f5f4a;
}

/* =========================================
   WHATSAPP CTA
   ========================================= */

.whatsapp-section {
    background: #f3f6f1;
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    background: #3f5f4a;
    color: #fff;
    padding: 13px 25px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
}

.whatsapp-btn:hover {
    background: #294534;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: #26392d;
    color: #fff;
    padding: 60px 5% 25px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 18px;
}

.footer p {
    color: #d6ddd8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: #d6ddd8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.fssai-footer {
    margin-top: 25px;
    font-size: 12px;
    color: #777;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: #bfc8c2;
    font-size: 13px;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .top-bar-inner,
    .top-contact {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 13px;
    }


.hero-btn:hover {
    background: #365c48;
    color: #ffffff;
}

    .hero-content p {
        font-size: 16px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Explore Collections - Premium Image & Hover Effect */

.collection-card {
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.collection-card img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.04);
}

/* Premium hover effect for collection cards */

.category-card {
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-card img {
    display: block;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

/* Reduce top spacing for Explore Collections */
.section:has(.category-grid) {
    padding-top: 30px;
}