/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff7fb; /* Soft pink */
    color: #564154;
}


/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffecf6;
    border-bottom: 2px solid #ffcae1;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d65d87;
    text-shadow: 1px 1px #ffe1ee;
}

.nav-links li {
    display: inline-block;
    margin-left: 25px;
}

.nav-links a {
    color: #b04a70;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e07fa7;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image + text */
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px; /* optional: makes it softer */
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d65d87;
    text-shadow: 1px 1px #ffe1ee;
}

html {
    scroll-padding-top: 100px; /* adjust based on your navbar height */
}


/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
}



/* About */
.about {
    padding: 60px;
    text-align: center;
}

/* Gallery */
.gallery {
    padding: 60px;
    background: #ffeaf3;
    text-align: center;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b04a70;
    margin-bottom: 20px;
    position: relative;
}

.gallery h2::after {
    content: "";
    width: 400px;
    height: 4px;
    background: #ffb6d5;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery h2 {
    text-shadow: 0 2px 6px rgba(255, 200, 230, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Banner Gallery */
.bannerGallery {
    padding: 60px;
    background: #ffeaf3;
    text-align: center;
}

.bannerGallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b04a70;
    margin-bottom: 20px;
    position: relative;
}

.bannerGallery h2::after {
    content: "";
    width: 400px;
    height: 4px;
    background: #ffb6d5;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hat Gallery */
.hatGallery {
    padding: 60px;
    background: #ffeaf3;
    text-align: center;
}

.hatGallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b04a70;
    margin-bottom: 20px;
    position: relative;
}

.hatGallery h2::after {
    content: "";
    width: 400px;
    height: 4px;
    background: #ffb6d5;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing {
    padding: 60px;
    background: #fff0f7; /* soft light pink */
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    color: #b04a70;
    margin-bottom: 10px;
    position: relative;
}

.pricing-sub {
    font-size: 1.2rem;
    color: #564154;
    margin-bottom: 40px;
}

/* Grid layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ALWAYS 3 per row */
    gap: 25px;
}

/* Price Cards */
.price-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border: 2px solid #ffcae1;
    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Title */
.price-card h3 {
    font-size: 1.6rem;
    color: #d65d87;
    margin-bottom: 10px;
}

/* Price Styling */
.price {
    font-size: 2rem;
    font-weight: bold;
    color: #b04a70;
    margin: 10px 0;
    font-family: "Playfair Display", serif; /* Elegant font */
}

/* Description text */
.desc {
    font-size: 1rem;
    color: #6e566d;
    margin-top: 10px;
}


/* Custom Orders */
.custom-order {
    padding: 60px;
    text-align: center;
}

.order-form {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    margin: 30px auto;
}

.order-form input,
.order-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 2px solid #ffb6d5;
    border-radius: 12px;
}

.order-form button {
    padding: 12px;
    background: #e07fa7;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.order-form button:hover {
    background: #d56a97;
}
.upload-label {
    color: #b04a70;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Drag & Drop Upload Box */
.upload-area {
    border: 2px dashed #d65d87;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    background: #fff0f7;
    color: #b04a70;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Hover + Drag Active State */
.upload-area:hover,
.upload-area.active {
    background: #ffe6f2;
    border-color: #b04a70;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Hide default file input */
#imageFile {
    display: none;
}

.optional-label {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #b04a70;
    margin-bottom: 10px;
    font-weight: bold;
}


.socials {
    padding: 60px;
    background: #fff7fb;
    text-align: center;
}

.socials h2 {
    font-size: 2.5rem;
    color: #b04a70;
    margin-bottom: 15px;
}

.socials p {
    font-size: 1.2rem;
    color: #564154;
    margin-bottom: 30px;
}

/* Social Buttons */
.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social {
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Individual Brand Color Options */
.instagram {
    background: #E1306C;
}
.tiktok {
    background: #010101;
}
.facebook {
    background: #3b5998;
}
.etsy {
    background: #D5641C;
}

/* Hover effect */
.social:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}


/* Contact */
.contact {
    padding: 60px;
    text-align: center;
}

/* Footer */
footer {
    padding: 20px;
    background: #ffecf6;
    text-align: center;
    border-top: 2px solid #ffcae1;
}

.success-message {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #d65d87;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

/* Soft fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Web Design */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Screens (phones under 768px) */
@media (max-width: 768px) {

    /* NAVIGATION */
    .navbar {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links li {
        display: block;
        margin: 10px 0;
    }

    /* HERO TEXT */
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* ABOUT SECTION */
    .about {
        padding: 40px 20px;
    }

    /* GALLERY GRID */
    .gallery-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 10px;
    }

    /* CUSTOM FORM */
    .order-form {
        width: 90%;
        margin: auto;
    }

    /* CONTACT */
    .contact {
        padding: 40px 20px;
    }

    .pricing {
    padding: 40px 20px;
    }

    .pricing h2 {
     font-size: 2rem;
    }

    .price {
        font-size: 1.6rem;
    }
    .social-icons {
        flex-direction: column;
        gap: 20px;
    }

    .socials h2 {
        font-size: 2rem;
    }

    .socials p {
        font-size: 1rem;
    }

     .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        background: #ffecf6;
        width: 100%;
        flex-direction: column;
        text-align: center;
        overflow: hidden;
        max-height: 0; /* closed */
        border-bottom: 2px solid #ffcae1;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hide regular desktop nav layout */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .navbar ul {
        width: 100%;
    }

    /* Open state */
    .nav-links.open {
        max-height: 300px;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
     .hero p {
        font-size: 1rem;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }

    .about p,
    .custom-order p,
    .contact p {
        font-size: 1rem;
    }

    .order-form input,
    .order-form textarea {
        font-size: 1rem;
    }

}

/* Very small phones (iPhone SE, older Androids) */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .gallery h2 {
        font-size: 1.5rem;
    }

}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #b04a70;
    border-radius: 5px;
    transition: 0.3s;
}

/* Mobile nav closed by default */
.nav-links {
    transition: max-height 0.4s ease-in-out;
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .gallery h2 {
        font-size: 1.5rem;
    }
}


/* CLEAN HERO REPLACEMENT THAT ALWAYS WORKS */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* LEFT-ALIGN CONTENT */
    padding-left: 60px; /* move text inward */
}

/* Background wrapper */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Background image */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(85%); /* blur + dim */
    transform: scale(1.05); /* avoids blur edge clipping */
}

/* Text content on the left */
.hero-content {
    z-index: 10;
    max-width: 500px;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 12px 25px;
    background: #e07fa7;
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #c9658e;
}

