/* GLOBAL */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #333;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 100px;
    border-radius: 20px;
    border: 1px solid #eee;
    z-index: 10;
    white-space: nowrap;
    min-width: 600px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #C9A86A;
}

.nav-links a {
    margin-left: 40px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: inline-block;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #C9A86A;
    transform: translateY(-10px) scale(1.2);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('Images/photo3.jpg') center/cover no-repeat;
    z-index: 0;
    filter: brightness(0.5);
}

.hero-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-box h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #C9A86A;
}

.hero-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn, .btn1 {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px;
}

.hero-box a {
    display: inline-block;
    transition: 0.2s ease;
}

.btn:hover, .btn1:hover {
    color: gold;
    transform: translateY(-15px) scale(1.2);
}

.btn {
    background: #C9A86A;
    color: white;
}

.btn1 {
    background: white;
    color: black;
}

/* PREVIEW SECTIONS */
.preview {
    padding: 30px 20px;
    background: #F7F3EE;
    border-bottom: 1px solid #eee;
    margin-top: 50px;
}

.preview h2 {
    font-size: 30px;
    color: #C9A86A;
    text-align: center;
}

.preview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-preview .preview-text {
    margin-left: -80px;
}

.preview-text p {
    background: rgba(255, 255, 255, 0.85);
    color: black;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-align: left;
    padding: 20px;
    border-radius: 12px;

}

/* REMOVE BOX ONLY FOR FIRST PREVIEW */
.intro-preview .preview-text p {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* INTRO FEATURES UNDER IMAGE */
.intro-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    max-width: 150px;
}

.feature-icon {
    font-size: 32px;
    color: #C9A86A;
    display: block;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.feature-box {
    text-align: center;
    max-width: 150px;
    padding: 10px;
    border-radius: 10px;
    transition: 0.25s ease;
    cursor: pointer;
}

.feature-box:hover {
    background: rgba(201, 168, 106, 0.15); /* soft gold tint */
    transform: translateY(-5px);
}


.about-photo1 {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    flex: 1;
}

.Our-Store-Preview {
    overflow: hidden;
    width: 100%;
    padding: 60px 0;
    background: #f4f4f4;
    border-radius: 10px;
    text-align: center;
    margin-top: 100px;
    margin-bottom:100px;
}


.Our-Store-Preview h2 {
    font-size: 30px;
    color: #C9A86A;
    margin-bottom: 20px;

}

.Our-Store-Preview a {
    background: #C9A86A;
    padding: 20px 40px;
    border-radius: 12px;
    color: black;
    text-decoration: none;
    
}


/* ANIMATION */
@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-gallery-belt {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollGallery 25s linear infinite;
    padding: 50px 50px;
    margin-bottom: 50px;

}

.home-gallery-belt img {
    height: 180px;
    width: 260px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}


.Gallery-Preview {
    text-align: center;
    padding: 200px 20px;
    background: #F7F3EE;
}

.Gallery-Preview h2 {
    font-size: 30px;
    color: #C9A86A;
    margin-bottom: 20px;
}

.Gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.Gallery-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 50px;
}

.Contact-Preview {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 100px 20px;
    background: #F7F3EE;
    
}

.contact-info {
    flex: 1;
    background: white;
    padding: 20px 40px;
    margin-right: 300px;
    margin-top: 20px;
    border-radius: 12px;
}

.contact-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    background: #fafafa;
}

.contact-form button {
    background: #b89b72;
    width: 250px;
    height: 50px;
    border-radius: 20px;
}

.contact-form button:hover {
    background: #a88a63;
}



/* FLOATING CIRCLE CTA */
.floating-circle-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #C9A86A;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 999;
    transition: 0.25s ease;
    
    /* PULSE ANIMATION */
    animation: pulse 2.2s ease-in-out infinite;
}

/* HOVER EFFECT */
.floating-circle-cta:hover {
    transform: scale(1.12) translateY(-4px);
    background: #b08f5c;
}

/* PULSE KEYFRAMES */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(201, 168, 106, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(201, 168, 106, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(201, 168, 106, 0.4);
    }
}



/* Services page */

.service-selector {
    text-align: center;
    padding: 50px 20px;
    background: #F7F3EE;
}

.selector-heading {
    font-size: 32px;
    color: #C9A86A;
    margin-bottom: 30px;
    margin-top: 100px;
}

.selector-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.selector-box {
    background: white;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.25s ease;
    min-width: 180px;
    text-align: center;
}

.selector-box:hover {
    background: #C9A86A;
    color: white;
    transform: translateY(-5px);
}

/* FULL SERVICE SECTIONS */
.full-service {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: #F7F3EE;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Heading + price/time on same row */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    color: #C9A86A;
    margin: 0;
    
}

.service-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: #C9A86A;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.full-service p {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
}






/* Contact page */




/* ABOUT PAGE MAIN WRAPPER */
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* MAIN HEADING */
.about-main-heading {
    text-align: center;
    font-size: 40px;
    color: #C9A86A;
    margin-bottom: 50px;
    margin-top: 50px;
}

/* EACH BIG BOX */
.about-box {
    background: #F7F3EE;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* BOX HEADINGS */
.about-box h2 {
    color: #C9A86A;
    margin-bottom: 15px;
    font-size: 26px;
}

/* BOX TEXT */
.about-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* OUR VALUES SECTION */
.values-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.values-heading {
    font-size: 36px;
    color: #C9A86A;
    margin-bottom: 40px;
}

/* CONTAINER FOR 3 BOXES */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* EACH BOX */
.value-box {
    background: #F7F3EE;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}

/* ICON */
.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #C9A86A;
}

/* HEADINGS */
.value-box h3 {
    font-size: 22px;
    color: #C9A86A;
    margin-bottom: 10px;
}

/* TEXT */
.value-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .values-heading {
        font-size: 30px;
    }
}





/* GALLERY PAGE WRAPPER */
.gallery-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* MAIN HEADING */
.gallery-main-heading {
    text-align: center;
    font-size: 40px;
    color: #C9A86A;
    margin-bottom: 40px;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* PAGINATION */
.gallery-pagination {
    text-align: center;
    margin-top: 30px;
}

.page-number {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    background: #F7F3EE;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #C9A86A;
    transition: 0.2s ease;
}

.page-number:hover {
    background: #C9A86A;
    color: white;
}

.page-number.active {
    background: #C9A86A;
    color: white;
}




/* CONTACT PAGE WRAPPER */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* MAIN HEADING */
.contact-heading {
    text-align: center;
    font-size: 40px;
    color: #C9A86A;
    margin-bottom: 40px;
}

/* TWO-COLUMN LAYOUT */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT SIDE */
.contact-left {
    background: #F7F3EE;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-left h2 {
    color: #C9A86A;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #C9A86A;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: black;
}

/* RIGHT SIDE MAP */
.contact-right {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-right {
        height: 300px;
    }
}



/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    justify-content: space-between;
    display: flex;
    padding: 30px 40px;
    gap: 50px;
}

footer h3 {
    color: gold;
}












/* 📱 MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        min-width: auto;
        width: 90%;
    }

    .nav-links a {
        margin-left: 15px;
    }

    /* PREVIEW SECTIONS */
    .preview-content {
        flex-direction: column;
        text-align: center;
    }

    .preview-text p {
        text-align: left;
    }

    .about-photo1 {
        max-width: 90%;
    }

    /* FEATURES */
    .intro-features {
        gap: 20px;
    }

    /* SERVICES SELECTOR */
    .selector-row {
        flex-direction: column;
        gap: 15px;
    }

    /* CONVEYOR BELT */
    .home-gallery-belt img {
        width: 180px;
        height: 120px;
    }

    .Our-Store-Preview {
        padding: 20px;
    }

    /* GALLERY PREVIEW */
    .Gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* CONTACT PREVIEW */
    .Contact-Preview {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        margin-right: 0;
        width: 100%;
    }

    .contact-form-container {
        width: 100%;
    }

    /* FLOATING CTA */
    .floating-circle-cta {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 11px;
    }
}
