* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #E6E1DE
}

header {
    background-color: #f7f5ed;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive styling for nav hidding */
@media screen and (max-width: 768px) {
    header {
        background-color: #ded4ad;
        padding: 20px;
    }
    nav {
        box-shadow:  1px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        padding: 10px ;
    }

  .logo h1{
    font-size: 70px;
    margin-right: 10px;
   margin-left: 40px;
   
  }  
    .buttons{
        margin-right: 20px;
      display: none;
      }
      .book-now, .get-quote {
        font-size: 16px;
        text-decoration: none;
        text-align: center;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: none;
    }
    .social-icons{
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        flex-direction: column;
    }
    .nav-links li {
        text-align: center;
        margin: 10px 0;
        display: none;
    }
    .burger {
        display: block;
        display: none;
    }
    .nav-active {
        display: flex;
        display: none;
    }
    /* Burger animation (optional) */
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
  .buttons{
    margin-right: 40px;
  }
}

.logo h1 {
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
    color: #ae8a62;
    font-family: "Great Vibes", cursive;
    font-weight: 700;
    font-style: normal;
    padding-left: 20px;
}

.logo span {
    color: #ae8a62;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 5px;
}

.nav-links li {
    font-size: 16px;
    font-family: "Aref Ruqaa", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}

.nav-links li a {
    text-decoration: none;
    color: #6f4e37;
    transition: color 0.3s ease;
    padding: 5px 15px 10px;
}

.nav-links li a:hover {
    background-color: #ae8a62;
    color: #ffffff;
    border-radius: 15%;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.social-icons img:hover {
    filter: grayscale(0%);
}

.social-icons i:hover {
    transform: scale(2);
}

.buttons {
    display: flex;
    gap: 10px;
}

.book-now, .get-quote {
    font-size: 16px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.book-now {
    background-color: #f7f5ed;
    border: 1px solid #ae8a62;
    color: #ae8a62;
}

.book-now:hover {
    background-color: #ae8a62;
    color: #ffffff;
}

.get-quote {
    background-color: #ae8a62;
    color: #ffffff;
}

.get-quote:hover {
    background-color: #91643c;
}

.hero {
    background: url('hero_image.png') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: "Great Vibes", system-ui;
    font-weight: 700;
    font-weight: 500;
    font-style: normal;
    margin-left: 300px ;
    display: inline-block;
    padding: 10px;
    border: 3px solid #ccc;
    border-radius: 10px;
    position: relative;
  }

  .hero h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url("your-flower-image.png");
    background-size: cover;
    border-radius: 50%;
}
  
  .passion, .services, .gallery, .blog {
    padding: 50px 0;
    text-align: center;
  }
  
  .passion h2, .services h2, .gallery h2, .blog h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-family: "Great Vibes", system-ui;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    padding: 10px;
    border: 3px solid #bfa962;
    border-radius: 10px;
    background-color: #dcd6b2;
    position: relative;
    box-shadow:  1px 4px 8px rgba(0, 1, 1, .2);
  }
.passion p,
.container10 {
    font-family: "Aref Ruqaa", serif;
    font-size: 18px;
    margin: 0 auto;
    max-width: 700px;
}
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.category {
    background: #EAEAEA;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}
.category:hover {
    transform: translateY(-10px);
}
.category img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
.category p {
    margin-top: 10px;
    font-size: 24px;
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: bold;
    color: #333;
}
@media (max-width: 600px) {
    .container  {
        grid-template-columns: 1fr;
    }
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-grid img {
    width: 30%;
    margin-bottom: 20px;
    border-radius: 10px;
}
.container99 {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
.header99 {
    text-align: center;
    position: relative;
}
.header99 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.header99 h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.container1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.card {
    background-color:#EAEAEA;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.card h3 {
    font-size: .8em;
    color: #6e6259;
    margin: 15px 0 0;
    font-family: "Oleo Script", system-ui;

}
.card h3 i {
    font-style: italic;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.item {
    background-color: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.caption {
    margin-top: 10px;
    font-size: 18px;
    color: #8a7967;
}
.caption span {
    font-style: italic;
}
.container2 {
    display: flex;
    background-color: #f4f0ec;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.images {
    position: relative;
    width: 50%;
}

.images img {
    border-radius: 10px;
    width: 90%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.images img:nth-child(2) {
    position: absolute;
    top: 120px;
    left: 50px;
    width: 70%;
}
.content2 {
    width: 50%;
    padding: 20px;
}
.content2 h1 {
    font-size: 40px;
    color: #4a4a4a;
    font-family: "Great Vibes", system-ui;
    font-weight: 700;
    font-style: normal;
}
.content2 p {
    font-size: 18px;
    color: #8a7967;
    line-height: 1.6;
    margin: 20px 0;
    font-family: "Aref Ruqaa", serif;
}
.content2 h3 {
    font-size: 22px;
    color: #c68958;
    margin-bottom: 10px;
    font-family: "Aref Ruqaa", serif;
}
.content2 h4 {
    font-size: 18px;
    color: #8a7967;
    margin-bottom: 30px;
    font-family: "Aref Ruqaa", serif;
}
.container3 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}
.container3 h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-style: italic;
    font-family: "Great Vibes", system-ui;
    display: inline-block;
    padding: 10px;
    border: 3px solid #bfa962;
    border-radius: 10px;
    background-color:  #dcd6b2;
    position: relative;
    box-shadow:  1px 4px 8px rgba(0, 1, 1, 2);
}
.description3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.8;
    margin: 0 auto 20px auto;
}
.info3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}
.info3 span {
    display: flex;
    align-items: center; 
}
.info3 span img {
    margin-right: 8px;
}
.btn3 {
    background-color: #f09e00;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
}

.images3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.images3 img {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.images3 img:nth-child(1) {
    width: 250px;
    height: auto;
}
.images3 img:nth-child(2) {
    width: 450px;
    height: auto;
}
.footer {
    background-color: #E6E1DE;
    color: #000000;
    text-align: center;
    padding: 50px 0;
    position: relative;
}
.footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 90%;
    background-color:#DE9B6A;
    border-top-left-radius: 50% 10%;
    border-top-right-radius: 50% 10%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.footer-content {
    position: relative;
    z-index: 2;
}
.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.footer-section {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    padding: 0 20px;
}
.footer-section h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    font-family: "Oleo Script", system-ui;
}
.footer-section img {
    width: 100px;
    height: 100px;
    margin: 5px;
    border-radius: 15px;
}
.footer-section input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 20px;
    width: 100%;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
.footer-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #e0e0e0;
    color: #000;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
}
.footer-bottom {
    margin-top: 50px;
    font-size: 14px;
    font-family: "Oleo Script", system-ui;
}
.footer-section button:hover {
    background-color: #b38e4a;
    box-shadow: 0px 10px 10px #000000;
}
.social-icons1 {
    margin-top: 20px;
}
.social-icons1 a {
    color: #000000;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}
.social-icons1 i:hover {
    transform: scale(2);
}