*{
    body {
    font-family: 'Poppins', sans-serif;
}
    margin:0; padding:0; box-sizing:border-box;
    font-family:Arial, sans-serif;
}
.offer-bar{
    background:#7B0036;color:#fff;
    text-align:center;padding:7px;font-size:14px;
}
/* NAVBAR */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.5rem 6%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px; 
    font-weight: 700;
    color: #000;
    transform: scale(1.9); 
    transform-origin: left center; 
}


.logo img {
   width: 50px;
    object-fit: contain;
    display: block;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    font-weight:600;
    color:#000;
    cursor:pointer;
}

.icons i{
    font-size:18px;
    margin-left:18px;
    cursor:pointer;
}

.menu-btn{
    display:none;
    font-size:23px;
    cursor:pointer;
}

/* HIDE MOBILE ICON ROW IN DESKTOP VIEW */
.mobile-icons {
    display: none;
}

/* MOBILE MENU */
@media(max-width:900px){

    /* NAV MENU */
    nav ul{
        position:absolute;
        top:75px;
        right:0;
        flex-direction:column;
        background:#fff;
        width:100%;
        padding:20px;
        display:none;
    }

    nav.open ul{
        display:flex;
    }

    /* DESKTOP ICON ROW HIDE ON MOBILE */
    .icons{
        display:none;
    }

    /* SHOW MOBILE ICON ROW */
    .mobile-icons {
        display:flex;
        gap:20px;
        margin-top:15px;
        font-size:22px;
        justify-content:flex-start;
        padding-left:10px;
    }

    .menu-btn{
        display:block;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* =============== BLOG / ABOUT BANNER =============== */
.about-banner {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

/* Banner Image */
.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.about-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);   
    z-index: 1;
}

/* Banner Text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    z-index: 2; 
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
}

/* =============== RESPONSIVE =============== */

/* TABLET */
@media (max-width: 992px) {

    .about-banner {
        height: 50vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.60); 
    }

    .banner-text h1 {
        font-size: 45px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .about-banner {
        height: 35vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.70);
    }

    .banner-text h1 {
        font-size: 28px;
    }
}



/* BLOG SECTION */
.blog-section {
    width: 100%;
    padding: 40px 8%;
    background: #fff;
    text-align: center;
}

.blog-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #7B0036;
}

.blog-header p {
    width: 70%;
    margin: auto;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* BLOG CARDS GRID */
.blog-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: .3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 20px;
    margin: 15px 0 5px;
}

.blog-card .price {
    font-size: 18px;
    color: #7B0036;
    font-weight: 600;
}

/* GALLERY SECTION */
.blog-gallery {
    padding: 40px 8%;
    background: #f7f1ec;
    text-align: center;
}

.blog-gallery h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #7B0036;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: .3s;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
}

.gallery-grid img:hover {
    transform: scale(1.07);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {

    .blog-header p {
        width: 90%;
    }

    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {

    .blog-header h2 {
        font-size: 32px;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img,
    .gallery-grid img {
        height: 200px;
    }
}



/* footer  */


/* footer  */
.footer {
    background: #f4ede6;
    padding: 2.5rem 8% 25px; 
    color: #3b2f28;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
    gap: 30px; 
}

.footer-col {
    min-width: 240px; 
    flex: 1; max-width: 320px; 
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* Titles */
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #7b4f2a;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #4c3b32;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #7b4f2a;
    margin-left: 4px;
}

/* Social icons */
.social-links a {
    font-size: 24px;
    margin-right: 14px;
    color: #7b4f2a;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Contact info */
.contact-info {
    margin-top: 15px;
    font-size: 15px;
    color: #4c3b32;
}

.contact-info i {
    margin-right: 8px;
    color: #7b4f2a;
    font-size: 18px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top:2rem;
    border-top: 1px solid #c8b8a8;
    padding-top: 15px;
    font-size: 14px;
    color: #5a4a41;
}

.footer-bottom a {
    color: #7b4f2a;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-links a {
        margin-right: 10px;
    }

    .contact-info p {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        margin-left: 0;
    }
}


/* Floating WhatsApp & Call Buttons */
:root{
--size:60px;
--gap:12px;
--right-offset:20px;
--bottom-offset:20px;
}


.floating-actions{
position: fixed;
right: var(--right-offset);
bottom: var(--bottom-offset);
display: flex;
flex-direction: column;
gap: var(--gap);
z-index: 999999;
}


.action-btn{
width: var(--size);
height: var(--size);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
text-decoration: none;
transition: transform 0.2s ease;
}


.action-btn:hover{
transform: translateY(-6px);
}


/* WhatsApp */
.whatsapp{
background: #25D366;
}


/* Call */
.call{
background: #007AFF;
}


.floating-actions svg{
width: 60%;
height: 60%;
fill: white;
}

.whatsapp i {
    font-size: 35px;   
}

@media(max-width:600px){
:root{ --size:50px; --right-offset:14px; --bottom-offset:14px; }
}