/* Gold Bloom Plastic - Main Styling */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* Header */

header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
}


nav a {
    text-decoration: none;
    color: #333333;
    margin-left: 25px;
    font-size: 15px;
}

nav a:hover {
    color: #D4AF37;
}


/* Hero Section */

.hero {
    padding: 100px 0;
    background: linear-gradient(to right, #faf8f2, #f5efe1);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 60px;
    color: #D4AF37;
    line-height: 1.2;
    margin-bottom: 35px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
}

.button {
    display: inline-block;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.button:hover {
    background: #B8860B;
}


/* Buttons */

.button,
button {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 15px 36px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.button:hover,
button:hover {
    background: #B8860B;
}


/* Sections */

.section {
    padding: 100px 0;
}

.light {
    background: #faf8f2;
}

h2 {
    text-align: center;
    color: #D4AF37;
    font-size: 34px;
    margin-bottom: 35px;
}

#about p {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 25px;
}


/* Products */

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform .3s, box-shadow .3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .4s;
}

.card:hover img {
    transform: scale(1.04);
}

.card h3,
.card p,
.card .button {
    margin-left: 25px;
    margin-right: 25px;
}

.card h3 {
    margin-top: 25px;
    text-align: center;
    color: #D4AF37;
    font-size: 28px;
    font-weight: 600;
}

.card p {
    text-align: center;
    color: #666;
    margin: 15px 25px 25px;
    line-height: 1.6;
}

.card .button {
    display: inline-block;
    margin-bottom: 25px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
}

.card {
    cursor: pointer;
}


/* Product Pages */

.category-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: transform .3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 20px;
    color: #333;
}

/* Customization */

.customization-note {
    text-align: center;
    margin: 60px auto 0;
    max-width: 750px;
}

.customization-note h3 {
    color: #D4AF37;
    font-size: 26px;
    margin-bottom: 12px;
}

.customization-note p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.back-link {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #B8860B;
    text-decoration: underline;
}

/* Quote Form */

form {
    max-width: 750px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input,
select,
textarea {
    padding: 16px 18px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

form button {
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
}

.quote-intro {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-top: -15px;
    margin-bottom: 35px;
}


/* Contact Section */

.contact-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 35px;
    font-size: 18px;
    color: #555;
}

.contact-info span:first-child {
    text-align: right;
    padding-right: 85px;
}

.contact-info span:nth-child(2) {
    text-align: center;
}

.contact-info span:last-child {
    text-align: left;
    padding-left: 85px;
}

/* Footer */

footer {
    background: #222222;
    color: white;
    text-align: center;
    padding: 25px;
}


/* Mobile */

@media (max-width: 768px) {

    /* Header */
    .nav {
        flex-direction: column;
        padding: 15px 0;
    }

    .logo img {
        height: 50px;
    }

    nav {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    nav a {
        margin: 0;
        padding: 7px 12px;
        font-size: 14px;
     border-radius: 20px;
    }

    nav a:hover {
    background: #faf8f2;
    color: #D4AF37;
    }


    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        width: 100%;
        max-width: 450px;
    }


    /* Sections */
    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }


    /* Products */
    .products,
    .product-grid,
    .gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card img,
    .product-card img {
        height: 230px;
    }

    .card h3 {
        font-size: 24px;
    }


    /* Quote Form */
    form {
        width: 100%;
        margin-top: 25px;
    }

    input,
    select,
    textarea {
        width: 100%;
    }

    form button {
        width: 100%;
    }


    /* Contact */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }

    .contact-info span {
        width: 100%;
        padding: 0 !important;
        text-align: center !important;
    }


    /* Footer */
    footer {
        padding: 20px 15px;
        font-size: 14px;
    }

}


/* Sticky Footer */

main {
    flex: 1;
}


.product-page {
    background: #faf8f2;
}