
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff9fc;
    color: #3d1637;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 7%;
    background-color: white;
    border-bottom: 1px solid #ecd8e6;
}

.logo h2{
    color: 7a286f;
    font-family: Georgia, serif;
    font-size: 24px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #3d1637;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    color: #c64f91;
}

.nav-button {
    padding: 12px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg,#df6eaa, #8d4aa3);
    color: white;
}

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 70px 7%;
}

.small-title {
    margin-bottom: 18px;
    color: #a63b7c;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 25px;
    font-family: Georgia, serif;
    font-size: 65px;
    line-height: 1.05;
}

.hero-text > p:not(.small-title) {
    max-width: 560px;
    margin-bottom: 30px;
    color: #755e6f;
    font-size: 18px;
    line-height: 1.7;
}

.order-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #df6eaa, #8d4aa3);
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.hero-cake {
   width: 100%;
   height: 500px;
   object-fit: cover;
   border: 10px solid white;
   border-radius: 200px 200px 30px 30px;
   box-shadow: 0px 25px 55px rgba(88, 35, 77, 0.22);
}

.offerings {
    padding: 90px 7%;
    text-align: center;
    background: white;
}

.offerings h2 {
    margin: 12px 0 45px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.offering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-card {
    padding: 40px 30px;
    border: 1px solid #efd8e9;
    border-radius: 25px;
    background: #fff8fc;
    box-shadow: 0 15px 35px rgba(88, 35, 77, 0.08);
}

.offering-card h3 {
    margin-bottom: 15px;
    color: #a747a8;
    font-family: Georgia, serif;
    font-size: 28px;
}

.offering-card p {
    color: #755e6f;
    font-size: 17px;
    line-height: 1.7;
}

.gallery {
    padding: 90px 7%;
    text-align: center;
    background: #fff8fc;
}

.gallery h2 {
    margin: 12px 0 45px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 8px solid white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(88, 35, 77, 0.15);
}

.gallery-grid img:first-child {
    grid-row: span 2;
    height: 720px;
}

.about {
    padding: 100px 7%;
    text-align: center;
    background: linear-gradient(135deg, #f8e8f4, #eee2f8);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    margin: 12px 0 25px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.about-content > p:not(.small-title) {
    margin-bottom: 20px;
    color: #755e6f;
    font-size: 19px;
    line-height: 1.8;
}

.about .order-button {
    margin-top: 15px;
}

.order-section {
    padding: 100px 7%;
    background: white;
}

.order-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.order-heading h2 {
    margin: 12px 0 18px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.order-heading > p:last-child {
    color: #755e6f;
    font-size: 18px;
    line-height: 1.7;
}

.order-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #fff8fc;
    border: 1px solid #efd8e9;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(88, 35, 77, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.form-group label {
    margin-bottom: 8px;
    color: #4a123d;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dcbfd6;
    border-radius: 12px;
    background: white;
    color: #4a123d;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b24eaa;
    box-shadow: 0 0 0 3px rgba(178, 78, 170, 0.12);
}

.order-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #fff8fc;
    border: 1px solid #efd8e9;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(88, 35, 77, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a123d;
    font-weight: bold;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 17px 25px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #df6eae, #9146b1);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(145, 70, 177, 0.3);
}

.policies {
    padding: 90px 7%;
    text-align: center;
    background: white;
}

.policies h2 {
    margin: 12px 0 45px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card {
    padding: 30px 20px;
    border: 1px solid #efd8e9;
    border-radius: 22px;
    background: #fff8fc;
}

.policy-card h3 {
    margin-bottom: 12px;
    color: #a747a8;
    font-family: Georgia, serif;
    font-size: 23px;
}

.policy-card p {
    color: #755e6f;
    line-height: 1.6;
}

footer {
    padding: 60px 7% 30px;
    text-align: center;
    color: white;
    background: #4a123d;
}

footer h2 {
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-size: 34px;
}

footer > p {
    color: #f3ddec;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px 0;
}

.social-links a {
    padding: 12px 22px;
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #4a123d;
    background: white;
}

.copyright {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 7%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-cake {
        height: 420px;
    }

    .offering-cards,
    .gallery-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid img,
    .gallery-grid img:first-child {
        height: 400px;
        grid-row: auto;
    }

    .policy-cards {
        grid-template-columns: 1fr;
    }

    .policies h2,
    .gallery h2,
    .about h2,
    .offerings h2 {
        font-size: 38px;
    }
}

.logo img {
    display: block;
    width: 190px;
    height: 75px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .offering-cards,
    .gallery-grid,
    .policy-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid img,
    .gallery-grid img:first-child {
        height: 350px;
        grid-row: auto;
    }

    .logo img {
        width: 160px;
        height: 65px;
    }
}

.shirt-hero {
    display: flex;
    min-height: 550px;
    align-items: center;
    justify-content: center;
    padding: 90px 7%;
    text-align: center;
    background: linear-gradient(135deg, #fff8fc, #f1e2f7);
}

.shirt-hero-content {
    max-width: 850px;
}

.shirt-hero h1 {
    margin: 20px 0 25px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1.1;
}

.shirt-hero-content > p:not(.small-title) {
    margin: 0 auto 30px;
    max-width: 650px;
    color: #755e6f;
    font-size: 19px;
    line-height: 1.7;
}

.shirt-gallery {
    padding: 90px 7%;
    text-align: center;
    background: white;
}

.shirt-gallery h2 {
    margin: 12px 0 45px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 48px;
}

.shirt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.shirt-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border: 8px solid white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(88, 35, 77, 0.15);
}

.coming-soon {
    display: flex;
    min-height: 680px;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    text-align: center;
    background: linear-gradient(135deg, #fff8fc, #f1e2f7);
}

.coming-soon-content {
    width: 100%;
    max-width: 900px;
    padding: 70px 50px;
    border: 2px solid #dfb761;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 25px 60px rgba(88, 35, 77, 0.12);
}

.coming-soon h1 {
    margin: 18px 0 25px;
    color: #4a123d;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1.1;
}

.coming-soon-content > p:not(.small-title) {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #755e6f;
    font-size: 19px;
    line-height: 1.7;
}

.coming-soon-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.coming-soon-details span {
    padding: 12px 20px;
    border-radius: 25px;
    color: #7a286f;
    background: #f7d9ec;
    font-weight: bold;
}

@media (max-width: 900px) {
    .coming-soon {
        padding: 60px 7%;
    }

    .coming-soon-content {
        padding: 50px 25px;
    }

    .coming-soon h1 {
        font-size: 44px;
    }
}

header {
    gap: 30px;
    padding: 20px 4%;
}

nav {
    flex: 1;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 22px;
}

nav a {
    white-space: nowrap;
    font-size: 16px;
}

.nav-button {
    white-space: nowrap;
    padding: 13px 22px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo img {
        max-width: 180px;
        height: auto;
    }

    nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    nav a {
        font-size: 14px;
    }

    .nav-button {
        padding: 10px 16px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }
}

    .tshirt-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .tshirt-grid img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    @media screen and (max-width: 768px) {
    .shirt-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .shirt-grid img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
    }
}

.gallery-grid img {
    height: 650px;
}

@media screen and (max-width: 768px) {
    .gallery-grid img,
    .gallery-grid img:first-child {
        height: 600px;
    }
}

.gallery-grid img.wide-cake {
    object-fit: contain;
    background-color: white;
}

.gallery-grid img:first-child {
    grid-row: auto;
    height: 650px;
}