@font-face{
    font-family:"Modern Serif Eroded";
    src:url("/static/fonts/Modern%20Serif%20Eroded.ttf")
    format("truetype");
}
@font-face{
    font-family:"Rooster";
    src:url("/static/fonts/Rooster.ttf")
    format("truetype");
}
@font-face{
    font-family:"Fredoka";
    src:url("/static/fonts/Fredoka.ttf")
    format("truetype");
}
body{
    margin:0;
    font-family:"aerial", sans-serif;
    background:#ffffff;
    background-image:
url("/static/images/background.gif");

background-size:cover;
background-position:center;
background-attachment:fixed;
}
/*....New contacy page....*/
.contact-section{
    background: #f4f0e6;
    min-height: 100vh;
    padding: 60px 8%;
}

.contact-header{
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1{
    font-size: 38px;
    color: #0e2d5c;
    margin-bottom: -1px;
}

.contact-header p{
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.2;
    color: #667085;
}

.contact-container{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.contact-left{
    width: 50%;
}

.contact-left h2{
    font-size: 32px;
    color: #0e2d5c;
    margin-bottom: 20px;
}

.contact-description{
    font-size: 20px;
    color: #425466;
    line-height: 1.2;
    margin-bottom: 34px;
}

.contact-boxes{
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;        /* wraps on small screens */
  margin-top: 20px;
}
.contact-boxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 160px;
}

.contact-card h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #333;
    margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
    color: #1877F2;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    display: block;
}
.contact-card h4{
    color: #0e2d5c;
    margin-bottom: 15px;
}

.contact-card a{
    color: #2563eb;
    text-decoration: none;
    font-size: 20px;
}
.social-section {
    margin-top: 30px;
}

.social-section h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons a i {
    font-size: 36px;
    transition: transform 0.2s ease;
}

.social-icons a:hover i {
    transform: scale(1.15);
}

.fa-instagram { color: #E1306C; }
.fa-facebook  { color: #1877F2; }
.fa-linkedin  { color: #0A66C2; }
.fa-whatsapp  { color: #25D366; }

.promise-card h2{
    color: #0e2d5c;
    margin-bottom: 30px;
    font-size: 40px;
}

.promise-card ul{
    padding-left: 20px;
}

.promise-card li{
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 20px;
    color: #4a5568;
}

.promise-text{
    margin-top: 40px;
    font-style: italic;
    color: #666;
    font-size: 20px;
}


/* MOBILE */
@media(max-width:768px){

    .contact-container{
        flex-direction: column;
    }

    .contact-left,
    .promise-card{
        width: 100%;
    }

    .contact-boxes{
        flex-direction: column;
    }

    .contact-card{
        width: 100%;
    }

    .contact-header h1{
        font-size: 42px;
    }
}
/*..new contact page end...*/    
/*....New about page....*/
.quality-section{
    background: #f4f0e6;
    padding: 100px 8%;
}

.quality-heading{
    text-align: center;
    margin-bottom: 70px;
}

.quality-heading h2{
    font-size: 42px;
    color: #0f2d5c;
    font-weight: 500;
}

.gold-line{
    width: 90px;
    height: 4px;
    background: #b08b57;
    margin: 20px auto;
    border-radius: 20px;
}

.quality-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.quality-image{
    width: 45%;
}

.quality-image img{
    width: 100%;
    border-radius: 30px;
}

.quality-content{
    width: 50%;
}

.quality-content h3{
    font-size: 32px;
    color: #0f2d5c;
    line-height: 1.3;
    margin-bottom: -16px;
}

.quality-content p{
    font-size: 21px;
    line-height: 1.9;
    color: #5d6472;
}

.quality-features{
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.feature-item{
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon{
    font-size: 34px;
}

.feature-item h4{
    color: #0f2d5c;
    margin-bottom: -8px;
    font-size: 24px;
}

.feature-item p{
    font-size: 18px;
    line-height: 1.7;
}


/* MOBILE */
@media(max-width:768px){

    .quality-container{
        flex-direction: column;
    }

    .quality-image,
    .quality-content{
        width: 100%;
    }

    .quality-heading h2{
        font-size: 40px;
    }

    .quality-content h3{
        font-size: 36px;
    }

    .quality-features{
        flex-direction: column;
    }
}
.brand-story-section{
    background: #f4f0e6;
    padding: 80px 10%;
}

.brand-story-text{
    max-width: 950px;
    margin: auto;
}

.brand-story-text p{
    font-size: 18px;
    line-height: 2;
    color: #5d6472;
    margin-bottom: -6px;
}

.mission-vision-wrapper{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.mission-box{
    background: #fbf9f4;
    width: 356px;
    padding: 14px;
    border-radius: 37px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.icon-circle{
    font-size: 42px;
    color: #b08b57;
    margin-bottom: 25px;
}

.mission-box h2{
    font-size: 41px;
    color: #0f2d5c;
    margin-bottom: 25px;
    font-weight: 500;
}

.mission-box p{
    font-size: 19px;
    line-height: 1.9;
    color: #5d6472;
}


/* MOBILE */
@media(max-width:768px){

    .brand-story-text p{
        font-size: 18px;
    }

    .mission-box{
        width: 100%;
        padding: 35px;
    }

    .mission-box h2{
        font-size: 34px;
    }
}
/*....new about page end...*/                                               
/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    position:relative;
}

.logo{
    width:145px;
}

.nav-links{

    position:absolute;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:50px;
    align-items:center;
}
.nav-links a{
    font-size: 20px;  /* change this number to whatever size you want */
    text-decoration:none;
    color:#222;
}

.about-btn{
    font-size: 20px;  /* change this too */
    position: absolute;
    right:-552px;
    display:inline-block;
    font-family:"Germany Sans", sans-serif;
    background:#411900;
    color:white!important;
    text-decoration:none;
    padding:14px 28px;
    border-radius:35px;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}
.about-btn:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

/* HERO SECTION */

.hero{
    padding:0;
}


/* HEADLINE */

/* HIDE OVERFLOW */

.headline-container{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
    margin:40px 0;
}
/* WHO WE ARE */
.who-title{
    text-align:center;
    color:#7f4e1ecf;
    font-family:"Fredoka",
    sans-serif;
    font: size 52px;;
    margin-bottom:-30px;
}
/* CHOCOLATE TEXT */
.highlight-text{
    color:#5b240096;
    text-align:center;
    font-size:30px;
    font-family:"Fredoka",
    sans-serif;
    line-height:2.5;
    margin-bottom:-18px;
}

/* NORMAL WHITE TEXT */
.about-normal{
    color:#5b2400c7;
    font-family:Arial,
    sans-serif;
    font-size:20px;
    line-height:1;
   text-align:center;
}

/* HEADLINE */

.headline{
    font-family:"Victory Striker Sans", sans-serif;
    font-size:72px;
    font-weight:900;
    margin:0;
    padding-right:50px;
}
/* CONTENT ALIGNMENT */
.hero-content{
    position:relative;
}
.left-section{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:2;
    width:400px;
}

/* LEFT SECTION */

.left-section{
    width:300px;
}

.description{
    font-family:"Modern Serif Eroded", sans-serif;
    color:#7F4E1E;
    font-size:22px;
    font-weight:700;

    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    font-family:"Germany Sans", sans-serif;
    background:#411900;
    color:white;
    text-decoration:none;
    padding:18px 50px;
    border-radius:35px;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}
.hero-btn:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}.


/* PRODUCT CARD */

.product-card{
background:white;
width:320px;
padding:14px;
border-radius:28px;
box-shadow:
0 4px 18px
rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
}

/*..to move descripton of product on to right side of image...*/
.product-detail-container {
    display: flex;
    gap: 60px;
    padding: 60px 8%;
    align-items: flex-start;
}

/* HOVER */

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


/* IMAGE */
.dress-image{
width:100%;
object-fit:cover;
border-radius:20px;
}

/* TEXT */
.product-page {
    display: flex;
    gap: 60px;
    padding: 60px 8%;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .product-page {
        flex-direction: column;
    }
}
.product-info{
padding:20px 10px;
}
.product-info h3{
font-size:28px;
margin-bottom:12px;
font-family:"Fredoka",
sans-serif;
color:#2E2E2E;
}
.product-price{
font-size:22px;
font-weight:bold;
color:#5B2400;
}
/* FOOTER */

.footer{
    background:#967B5D;
    font-family:"aerial",sans-serif;
    color:white;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:70px 80px;
    margin-top:100px;
}

.footer-section{
    display:flex;
    flex-direction:column;
    min-width:220px;
    margin-bottom:30px;
}

.footer-section h2{
    font-family:"aerial",sans-serif;
    font-size:18px;
    margin-bottom:1px;
    color:#ffffff;
}

.footer-section p,
.footer-section a{

    color:white;
    text-decoration:none;
    margin:-1px 0;
    font-size:22px;
    line-height:2;
}

.footer-section a:hover{
    color:#FFD1DF;
}

/* FAQ PAGE */

.faq-page{
    max-width:1200px;
    margin:auto;
    padding:80px 40px;
}

.faq-title{
    text-align:center;
    font-size:52px;
    color:black;
    margin-bottom:60px;
}

/* SECTION HEADINGS */
.faq-section{
    margin-bottom:70px;
}

.faq-section h2{
    font-size:34px;
    color:black;
    margin-bottom:35px;
    border-bottom:2px solid #ddd;
    padding-bottom:10px;
}


/* QUESTIONS */

.faq-item{
    margin-bottom:35px;
}

.faq-item h3{
    color:#7F4E1E;
    font-family: "aerial", sans-serif;
    font-size:24px;
    margin-bottom:10px;
}


/* ANSWERS */

.faq-item p{
    color:black;
    font-family: "aerial", sans-serif;
    font-size:19px;
    line-height:1.9;
}
   /* HERO IMAGE CONTAINER */
.right-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;}

/* IMAGE */
.baby-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-banner{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TEXT ON IMAGE */
.hero-overlay{
    position:absolute;
    top:50%;
    left:2%;
    transform:translateY(-50%);
    z-index:10;
    max-width:650px;
}
/* BIG TEXT */
.hero-overlay h1{
    font-family:"Fredoka",
    sans-serif;
    color:rgba(255, 255, 255, 0.8);
    font-size:50px;
    line-height:1;
    margin:235px 0 15px 0;
    text-shadow:
    1 4px 25px
    rgba(0,0,0,0.35);
}

/* SMALL TEXT */
.hero-overlay p{
    font-family:Arial,
    sans-serif;
    color:white;
    font-size:24px;
    line-height:1.8;
    margin:-5px;
    text-shadow:
    0 3px 10px
    rgba(0,0,0,0.3);
}
/* DOTS */
.slider-dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}
.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:
    rgba(255,255,255,0.7);
    cursor:pointer;
}
.dot.active{
    background:#7F4E1E;
}
/*....Embed Map from google maps....*/
.map-section{
    padding: 80px 8%;
    background: #f7f3eb;
    text-align: center;
}

.map-title{
    font-size: 42px;
    color: #0f2d5c;
    margin-bottom: 40px;
}

.map-container{
    width: 100%;
    max-width: 1700px;
    margin: auto;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe{
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}
/*....Embed Map from google maps end....*/
/* SERVICES PAGE */
body {
    margin: 0;
    padding: 0;
}

.services-hero-image {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin: 0;        /* add this */
    padding: 0;       /* add this */
}

.full-service-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.services-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:white;
    background:rgba(0,0,0,0.25);
    padding:40px 50px;
    border-radius:35px;
}

.services-overlay h1{
    font-size:60px;
    margin-bottom:15px;
}

.services-overlay p{
    font-family:Arial, sans-serif;
    font-size:20px;
    line-height:1.8;
}

.services-list{
    padding:80px;
    max-width:1200px;
    margin:auto;
}

.service-box{
    background:white;
    padding:35px;
    border-radius:30px;
    margin-bottom:30px;
    box-shadow:
    0 8px 25px rgba(0,0,0,0.08);
}

.service-box h2{
    color:#7F4E1E;
    margin-bottom:12px;
}

.service-box p{
    font-family:Arial, sans-serif;
    color:black;
    line-height:1.8;
}
/*....service page....*/
.services-content {
    width: 85%;
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.center-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    margin-top: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.service-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}
/* LEFT */

.product-left{

    width:55%;
}
.product-main-image{
width:100%;
height:650px;
object-fit:contain;
display:block;
background:white;
border-radius:35px;
}

/* THUMBNAILS */

.thumbnail-row{

display:flex;
gap:25px;
justify-content:center;
align-items:center;
margin-top:25px;
}
.thumbnail{
width:150px;
height:150px;
object-fit:cover;
border-radius:25px;
cursor:pointer;
background:white;
}


/* RIGHT */

.product-right{
    width:45%;
    padding-top:40px;
}

.product-right h1{
    font-family: -webkit-body, sans-serif;
    font-size:35px;
    margin-bottom:10px;
}

.product-right h2{
    color:#5B2400;
    margin-bottom:25px;
}

.fabric{
    font-family: -webkit-body, sans-serif;
    font-weight:bold;
    margin-bottom:25px;
}
/* COLOURS */
.colour-row{
    display:flex;
    gap:15px;
    margin:20px 0;
}
.colour{
    width:35px;
    height:35px;
    border-radius:50%;
}

.pink{
    background:pink;
}

.blue{
    background:lightblue;
}

.cream{
    background:beige;
}
/* MOBILE RESPONSIVE */

@media(max-width:768px){

    /* NAVBAR */
    .navbar{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

    .logo{
        width:180px;
    }

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }
    .nav-links a{
        margin-left:0;
        font-size:16px;
    }
    /* HEADLINE */
    .headline{
        font-size:34px;
        text-align:center;
    }
    .headline-container{
        margin:20px 0;
    }
    /* HERO CONTENT */
    .left-section{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        width:90%;
        margin:auto;
        text-align:center;
        padding:30px 0;
    }
    .description{
        font-size:18px;
    }
    .btn{
        padding:14px 35px;
        font-size:16px;
    }
    /* HERO IMAGE */
    .baby-image{
        width:100%;
        height:60vh;
    }


    /* CATEGORIES */
    .categories{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .flower-image{
        width:220px;
        height:220px;}

    .category-card h3{
        font-size:28px;
    }
    /* FOOTER */
    .footer{
        flex-direction:column;
        text-align:center;
        padding:50px 30px;
    }
    /* FAQ */
    .faq-page{
        padding:50px 20px;
    }

    .faq-title{
        font-size:38px;
    }

    .faq-section h2{
        font-size:28px;
    }
    .faq-item h3{
        font-size:20px;
    }
    .faq-item p{
        font-size:16px;    }

    /* SERVICES PAGE */
    .services-overlay{
        width:85%;
        padding:25px;
    }
    .services-overlay h1{
        font-size:38px;
    }
    .services-overlay p{
        font-size:16px;
    }
    .services-list{
        padding:40px 20px;
    }
    .service-box{
        padding:25px;    }
    /* ABOUT PAGE */
    .about-overlay{
        width:85%;
        padding:25px;
    }
    .about-overlay h1{
        font-size:38px;
    }
    .about-overlay p{
        font-size:16px;
    }
    .about-content{
        padding:50px 20px;
    }
    .about-box{
        padding:30px;
    }
    .quote-box p{
        font-size:24px;
    }
}
/* SLIDER DOTS */
.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,0.7);
    cursor:pointer;
    transition:0.3s;
}
.dot.active{
    background:#b3acb1;
    transform:scale(1.2);
}
 
  @media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }
    .product-left,
    .product-right {
        width: 100%;
    }
}

/* INDEX MOBILE VIEW*/
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
        align-items: center;
    }

    .logo {
        width: 130px;
    }

    .nav-links {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .about-btn {
        position: static;
        margin-top: 5px;
        padding: 10px 22px;
        font-size: 15px;
    }

    /* HERO */
    .right-section {
        height: 60vh;
    }

    .hero-overlay {
        left: 4%;
        max-width: 90%;
    }

    .hero-overlay h1 {
        font-size: 26px;
        margin: 0 0 10px 0;   /* removes the 235px top margin */
        line-height: 1.3;
    }

    .hero-overlay p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 15px;
        margin-top: 10px;
        display: inline-block;
    }

    /* PRODUCT GRID */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns on mobile */
        gap: 16px;
        padding: 20px;
    }

    .product-card {
        width: 100%;          /* removes fixed 320px */
        padding: 10px;
        border-radius: 18px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    /* FOOTER */
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 10px;
    }

    .footer-section {
        min-width: unset;
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 16px;
        line-height: 1.8;
    }

    .footer-section h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: center;
    }
}