/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container2{
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
}
.topnav {
    overflow: hidden;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    color: black;
    background-color:  #ffc107;
  }

  .topnav #home:hover{
    background-color: transparent;
  }
  
  .topnav a.active {
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  .ssd{
    background-color: rgba(0, 0, 0, 0.404);
    border-radius: 10px;
    padding: 9%;
  }
  .a-link{
    text-decoration: none;
    background-color: #e0a800;
    color: white;
    font-size: 16px;
    padding: 15px;
    margin-top: 20px;
    border: 0px;
    border-radius: 10px;
  }
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
#about p, #testimonials p, #service p, #blog p, #recipes p, #events p{
    text-align: left;
}
.test-name{
    color: #D63947;
    font-weight: 600;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ccc; 
  }

  
  .panel {
    padding: 18px;
    display: none;
    background-color: rgba(255, 255, 255, 0.452);
    overflow: hidden;
  }
header {
    background-color: #D63947;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 1.8rem;
    color: white;
    margin-left: 20px;
    float: left;
}

nav {
    float: right;
    margin-right: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffc107;
}

/* Jumbotron */
.jumbotron {
    background: url('https://images.unsplash.com/photo-1516414559093-91c1c3d7359c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.jumbotron-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 8%;
    border-radius: 10px;
}

.jumbotron-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.jumbotron-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #ffc107;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0a800;
}

/* Sections */
section {
    padding: 60px 0;
}
.testimonial, #blog p, #recipes p{
    margin: 1rem 0;
}
section h2 {
    font-size: 2.5rem;
    color: #C72332;
    text-align: center;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1rem;
    text-align: center;
}

footer {
    background-color: #D63947;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1, nav {
        float: none;
        text-align: center;
    }

    nav ul {
        padding: 10px 0;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .jumbotron-content h2 {
        font-size: 2rem;
    }

    .jumbotron-content p {
        font-size: 1rem;
    }
}
