@import url('https://fonts.googleapis.com/css2?family=Allura&family=Aref+Ruqaa:wght@400;700&family=Fleur+De+Leah&family=Fredoka:wght@300..700&family=MonteCarlo&family=Poiret+One&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* ==============================
   GLOBAL RESET
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    /* font-family: "MonteCarlo", cursive; */
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Ubuntu", sans-serif; */
    /* font-family: "Fredoka", sans-serif; */
    /* font-family: "Allura", cursive; */
     font-family: "Roboto", sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.6;
    caret-color: transparent;
}

/* ==============================
   LAYOUT CONTAINER
============================== */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}

/* ==============================
   HEADER / NAV
============================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #eecd6a, transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    cursor: hidden;
}

.no-blinking-cursor {
  caret-color: transparent;
}
.logo {
    /* color: #333; */
    background: url('../img/newlogo1.png');
    height: 200px;
    width: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    position: relative;
    text-decoration: none;
    padding: 8px 0;
    color: #666;
    transition: color 0.3s ease;
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    font-family: "MonteCarlo", cursive;
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Ubuntu", sans-serif; */
    font-weight: 400;
    font-style: normal;
    font-size: 2.5em;
    /* text-shadow: 2px 2px 1px #777; */
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ddb53c;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ddb53c;
}

nav a:hover::after {
    width: 100%;
}

.active {
    color: #ddb53c;
}
/* ==============================
   HERO SECTION
============================== */
.hero {
    background: url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-size: 6em;
    margin-bottom: 20px;
    color: #eecd6a;
    text-shadow: 4px 4px 10px #000;
    /* font-family: "Ubuntu", sans-serif; */
    /* font-family: "Fredoka", sans-serif; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    font-family: "MonteCarlo", cursive;
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Ubuntu", sans-serif; */
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 5px #000;
}

/* ==============================
   BUTTONS
============================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ddb53c;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 2px 2px 5px #888;
    font-family: "Fredoka", sans-serif;
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    /* font-family: "MonteCarlo", cursive; */
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Ubuntu", sans-serif; */
    
}

.btn:hover {
    background: #eecd6a;
}

/* ==============================
   ABOUT SECTION
============================== */
.about {
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}
.about::before {
    content: "";
    position: absolute;
    left: 0px;
    /* transform: translateY(-50%); */
    top: 150px;
    width: 140%;
    height: 100%;

    background: url("../img/flowerart.jpeg") no-repeat center;
    background-size: 100% 100%;

    opacity: 0.1; /* KEY */
    pointer-events: none;
    z-index: -1;
}

.about h2 {
    margin-bottom: 20px;
    color: #eecd6a;
}

.about p {
    margin-bottom: 18px;
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    /* font-family: "Poiret One", sans-serif; */
    /* font-family: "MonteCarlo", cursive; */
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    font-family: "Roboto", sans-serif;
    font-size: 1.15em;
    /* font-family: "Ubuntu", sans-serif; */
}
.section-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 50px !important;
    color: #eecd6a;
    font-family: "Poiret One", sans-serif;

}
.about-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);

    border-radius: 12px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.04);
}
.about-block {
    max-width: 900px;
    margin: 0 auto 50px;
    
}

.about-block h3 {
    margin-bottom: 20px;
    font-size: 2em;
    font-family: "Ubuntu", sans-serif;
    color: #333;
}

.about-block p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.25em;
}

.closing {
    text-align: center;
}

.closing .btn {
    margin-top: 50px;
}

/* ==============================
   SERVICES
============================== */
/* ===== Services Section Wrapper ===== */
.services-section {
    padding: 60px 0px;
    background: #f4f4f4;
}

/* ===== Section Title ===== */
.services-title {
    text-align: center;
    /* margin-bottom: 25px; */
    font-size: 3.5em;
    font-weight: 600;
    color: #eecd6a;
    font-family: "Poiret One", sans-serif;
}

/* ===== Grid Layout ===== */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Tablet */
@media (max-width: 992px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
}

/* ===== Neumorphic Card Styling ===== */
.service-card {
    background: rgba(255,255,255,1);
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 1s ease;
}

/* Subtle Green Accent Glow */


.service-card::before {
  content: "";
  display: block;
  width: 65%;
  height: 3px;
  background: #eecd6a;
  margin-bottom: 15px;
}

/* Card Title */
.service-card h3 {
    margin-bottom: 12px;
    color: #333;
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Poiret One", sans-serif; */
    /* font-family: "MonteCarlo", cursive; */
    font-family: "Allura", cursive;
    font-size: 2.2em;
    /* font-family: "Fleur De Leah", cursive; */
    /* font-family: "Aref Ruqaa", serif; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Ubuntu", sans-serif; */
    /* font-family: "Fredoka", sans-serif; */
}

/* Paragraph */
.service-card p {
    color: #444;
    line-height: 1.6;
    font-size: 1.25em;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Optional: subtle gold detail on hover */
.service-card:hover h3 {
    color: #eecd6a;
}

/* ===============================
   Portfolio timeline
================================ */

.portfolio-timeline{
    padding:80px 20px;
    max-width:1400px;
    margin:auto;
}

.timeline-title{
    text-align:center;
    color:#eecd6a;
    font-family:"Poiret One",sans-serif;
    font-size:3.5em;
    margin-bottom:50px;
}


/* ===============================
   Slideshow
================================ */

.slideshow{
    position:relative;
    width:100%;
    max-width:400px;
    aspect-ratio:4/3; /* keeps height so slides don't overlap text */
}

/* slides stack for fade effect */

.slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;
    transition:opacity .8s ease;
}

.slide.active-slide{
    opacity:1;
}


/* ===============================
   Timeline layout
================================ */

.timeline{
    display:flex;
    flex-direction:column;
    position:relative;
}

/* vertical line */

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    width:2px;
    background:#eecd6a;
    top:0;
    bottom:0;
    transform:translateX(-50%);
    z-index:0;
}


/* timeline item */

.timeline-item{
    display:grid;
    grid-template-columns:1fr 40px 1fr;
    align-items:center;
    margin-bottom:200px;
}


/* center circle */

.circle{
    width:25px;
    height:25px;
    background:#fff;
    border:2px solid #eecd6a;
    border-radius:50%;
    margin:0 auto;
    z-index:2;
}


/* ===============================
   Columns
================================ */

.timeline-left,
.timeline-right{
    display:flex;
    align-items:flex-start;
}

.timeline-left{
    justify-content:flex-start;
}

.timeline-right{
    justify-content:flex-end;
}

/* this is the important fix */
.m-left{
    margin-left:auto;
}


/* text alignment */

.timeline-right .timeline-content{
    text-align:right;
}


/* ===============================
   Content
================================ */

.timeline-content{
    padding:20px;
}

.timeline-content h3{
    margin-bottom:25px;
    font-family:"MonteCarlo",cursive;
    font-size:3.5em;
    color:#fff;
    text-shadow:2px 2px 15px #000;
}

.timeline p{
    font-size:1.25em;
}


/* images */

.timeline img{
    width:100%;
    max-width:400px;
    height:auto;
    display:block;
}


/* ===============================
   Mobile Layout
================================ */
@media (max-width:1200px){

/* remove timeline line + circle */

.timeline::before{
    display:none;
}

.timeline-center{
    display:none;
}


/* stack items */

.timeline-item{
    grid-template-columns:1fr;
    gap:25px;
    margin-bottom:80px;
    justify-items:center; /* centers everything in the grid */
}

.timeline-left,
.timeline-right{
    grid-column:1;
    justify-content:center;
    width:100%;
    max-width:700px;
}


/* ensure image first */

.timeline-left.slideshow,
.timeline-right.slideshow{
    order:1;
}

.timeline-left:not(.slideshow),
.timeline-right:not(.slideshow){
    order:2;
}


/* ---------- IMPORTANT FIX ---------- */

/* let images control height */

.slideshow{
    aspect-ratio:auto;
    max-width:100%;
}

/* disable absolute stacking on mobile */

.slide{
    position:relative;
    height:auto;
}

/* only show the active slide */

.slide:not(.active-slide){
    display:none;
}


/* text formatting */

.timeline-content{
    text-align:center !important;
    padding:10px 20px;
    margin:0 auto; /* ensures centering */
    z-index: 1000;

}

.timeline-content h3{
    font-size:2.2em;
    line-height:1.2;
    margin-top: -100px;
}

.timeline p{
    font-size:1.1em;
}

}
/* ==============================
   CONTACT FORM
============================== */
.contact {
    min-height: 100vh;
}
.contact h2, #contact-guide {
    text-align: center;
}
.contact h2 {
    font-size: 3.5em;
    margin-bottom: 25px;
    color: #eecd6a;
    font-family: "Poiret One", sans-serif;
}
#contact-guide {
    font-size: 1.25em;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    line-height: 35px;
    margin-bottom: 50px;
}
#contact-guide a {
    color: #ddb53c !important;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea,
select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #eecd6a;
}

.contact button {
    font-size: 1.25em;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 2px #888;
}

#form-response{
    margin-top:15px;
    font-size:.95rem;
    color:#333;
    width: 100%;
    text-align: center;
}
.success {
    /* color: green; */
}
.error {
    color: red;
}
.honeypot{
display:none;
}

/* ==============================
   FAQ
============================== */
.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    color: #eecd6a;
    margin-bottom: 8px;
}

/* ==============================
   FOOTER
============================== */
footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
    /* margin-top: 60px; */
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    /* flex-wrap: wrap; */
    gap: 40px;
}
.footer-container div {
    width: 33%;
}
.footer-info h3 {
    color: #eecd6a;
    margin-bottom: 10px;
}
.footer-logo-container {
    text-align: center;
}
.footer-links {
    text-align: right;
}
.footer-links a {
    display: block;
    color: #eecd6a;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
}
#footer-logo {
    height: 125px;
}

/* ==============================
   FADE-IN ANIMATION
============================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width:768px){

header {
    position: relative;
}
nav{
    flex-direction:column;
    height:auto;
    padding: 0px 0px 20px 0px !important;
}
.container {
    width: 100%;
}
.logo{
    width:140px;
    height:140px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

nav a{
    font-size:1.8em;
}

.hero{
    height:60vh;
}

.hero-content h2{
    font-size:2.4em;
}

.hero-content p{
    font-size:1.1em;
}
.section-title {
    margin-bottom: 50px !important;
}
.section-title, .timeline-title {
    font-size: 2.5em !important;
    line-height: 1.2em;
}

.about-content-container{
    padding: 40px;
    text-align: center;
}

.services{
    grid-template-columns:1fr !important;
}

#contact-guide {
    width: 100%;
}
}

@media (max-width: 992px){

.hero{
    height:70vh;
}

.hero-content h2{
    font-size:3em;
}

.hero-content p{
    font-size:1.2em;
}
.about::before {
    height: 40%;
}
.services{
    grid-template-columns:repeat(2,1fr);
}

 .footer-container {
        flex-direction: column;
    }
    .footer-info, .footer-links, .footer-logo-container {
        text-align: center;
        width: 100% !important;
    }

}

@media (max-width: 1200px) {

.hero-content h2{
    font-size:4em;
}

.section-title,
.services-title,
.contact h2{
    font-size:3em;
}

nav a{
    font-size:2em;
}

.logo{
    width:160px;
    height:160px;
}

}