body {
    font-family: 'Funnel Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4Pbb6TDYsmgQ.woff2) format('woff2');
    margin: 0;
    padding: 0;
    color: #2a0a5e;
    background-color: rgba(251,193,181,1);
    padding-top: 150px;
    padding-bottom: 80px;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-family: 'Blippo', fantasy;
    align-items: left;
    color: #2a0a5e;
}

.logo-link {
    text-decoration: none;
}

a:link { color:#2a0a5e !important;}
a:visited { color:#2a0a5e !important;}
a:active { color:#e87341 !important;}


.logo {
    width: 80px;
    border-radius: 60px;
    flex: 30%;
    display: flex;
    padding: 5px;
    border-style: inset;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.1);
}

.tags{
  font-style: italic;
  color: #e87341;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin: 10px 15px;
    color: #2a0a5e;
    font-size: 18px;
    font-weight: 500;
}

.dropdown {
    position: relative;
    left: 5%;
    display: inline-block;
    padding: 14px 14px;
    color: #fff;
    background-image: linear-gradient(10deg, #fac4a7, #e87341);
    border-radius: 30px;
    border-top-left-radius: 0;
}

.contact-content {
  display: none;
  position: absolute;
  background-color: #e87341;
  padding: 15px;
  color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.contact-content a {
  color: #2a0a5e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.contact {
    position: relative;
    display: block;
    margin: 20px auto;
    padding: 14px 14px;
    color: #e87341;
    background-image: linear-gradient(0deg, #fac4a7, #e87341);
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    cursor: pointer;
}

.contact-content {
    display: none;
}

.contact-content a:hover {
  background-color: #fac4a7;
  border-radius: 30px;}

/* Desktop hover behavior */
@media (min-width: 769px) {
    .contact:hover .contact-content {display: contents;}
    .contact:hover {
        border-radius: 60px;
        transition: 0.5s;
    }
}

.feature-img{
  width: 100%;
  max-width: 310px;
  object-fit: contain;
  float: right;
  margin: 20px 0px 20px 20px;
}

/* Topbar that holds logo, search and hamburger */
.topbar{
  display:flex;
  flex-direction: row;
  justify-content:space-between;
  flex-direction: row;
  gap:16px;
  padding:8px 2%;
  margin: 0 auto;
  width: 100%;
}

.topbar .logo-link{ position:static; }

.hamburger{ cursor:pointer; padding:6px; display:flex; align-items:center; justify-content:center; }
.hamburger svg rect{ fill:#2a0a5e; }

/* Sidebar styles */
.overlay{
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.35);
  opacity:0; transition: opacity 220ms ease;
  z-index: 120;
  pointer-events: none;
}
.overlay.visible{ opacity:1; pointer-events: auto; }

.sidebar{
  position:fixed;
  top:0; left:0;
  height:100vh;
  width:280px;
  background-image: url(./images/background.png);
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
  transform: translateX(-110%);
  transition: transform 300ms cubic-bezier(.2,.9,.2,1);
  z-index: 130;
  padding: 40px 20px;
  overflow-y:auto;
}
.sidebar.open{ transform: translateX(0); }

.sidebar-list{
  list-style:none;
  display: flex;
  flex-direction: column;
  padding:0;
  margin:0;
  align-items: flex-start;
}
.sidebar-list li{ margin:12px 0;}
.sidebar-list a{ color:#2a0a5e; text-decoration:none; font-weight:600; font-size:18px; }


/* Form container  */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px
        rgba(0, 0, 0, 0.1);
}

label {
    margin-top: 1rem;
}

input {
    padding: 10px;
    box-sizing: border-box;
    margin: 1.2rem 0;
}

/* Styling specific input types  */
input[type="text"],
input[type="number"] {
    width: 100%;
}

input[type="textarea"] {
    width: 100%;
    height: 10rem;
}

.content {
  display: flex;
  justify-content: center;
  text-align: justify;
  margin:25px;
  padding: 25px;
  background:rgba(251,193,181,1);
  border-top: 0.25rem solid #2a0a5e;
  border-bottom: #2a0a5e 0.25rem solid;
  width: 100%;
}

.content-text {
  max-width: 600px;
  margin: 0;
  padding: 20px;
  font-size: clamp(14px, 2vw, 16px);
}

.content-text p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

.search{
    display:flex;
    flex-direction: row;
    background-color:#2a0a5e;
    padding:13px;
    width:335px;
    margin:100px auto;
    box-sizing:border-box;
    border-radius:6px;
}

input[type="search"]{
    width:250px;
    height:30px;
    padding-left:15px;
    border-radius:6px;
    border:none;
    color:#939393;
    font-weight:500;
    background-color:#fffbf8;
}

button[type="submit"]{
    padding: 10px;
    background-color: rgba(251,193,181,1);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    cursor:pointer;
}

button:hover {
    background-color: #2a0a5e;
    color: #e87341;
    border-bottom-right-radius: 0;
    transition: 0.5s;
}

input[type="search"]:focus{
    outline:0;
}

header.hero {
  display: flex;
  flex-direction: column;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(251,193,181,1) 0%, rgba(251,193,181,0.98) 100%);
  z-index: 110;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header h1  {
  padding: 15px 0;
  margin: 0;
  text-align: center;
  font-family: 'Chewy', cursive;
  font-size: 45px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
  color:#2a0a5e;
}

h1  {
  font-family: 'Chewy', cursive;
  font-size: 40px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
  color:#2a0a5e;
  text-align: center;
  padding: 10px 0;
  color:#2a0a5e;
  padding-bottom: 15px;
  margin: 10px;
}

h2 {
  color:#2a0a5e;
  margin: 10px;
}

@media (max-width:768px){
  .topbar{ padding: 8px 1%; }
  .logo{ width:60px; }
  .searchbox{ display:none; }
  header h1{ font-size:35px; }
  body{ padding-top: 120px; padding-bottom: 20px; }
  h1, h2, h3 {
        margin-top: 10px;  /* Adjust top margin */
        margin-bottom: 10px;  /* Adjust bottom margin */
        line-height: 30px;
    }
  .header h1 {
          font-size: 28px;
          line-height: 75px;
      }
  .contact {
      max-width: 90%;
      padding: 12px 10px;
      margin: 15px;
  }
  .contact h2 {
      font-size: 20px;
      margin: 5px 0;
  }
  .contact-content a {
      font-size: 14px;
      padding: 10px 12px;
  }

  .contact:hover .contact-content {
      display: none;
  }
  .contact.active .contact-content {
      display: contents;
  }
  .contact.active {
      border-radius: 60px;
      transition: 0.5s;
  }
}

@media (max-width:480px){
  header h1{ font-size:28px; padding:10px 0; }
  .content{ padding:15px; margin:10px auto; }
  body{ padding-top: 110px; padding-bottom: 110px;}
  footer {font-size: 0.5rem;}
  .socials-toggle-btn {
      position:relative;
      max-width: 100%;
      padding: 2rem;
      margin-bottom: 4rem;
  }
}

@media (max-width:720px){
  .feature-img{ display:none; }
}


/* latin-ext */
@font-face {
  font-family: 'Funnel Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4Pbb6TDYsmgQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Funnel Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4Pbb6dDYs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Funnel Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4Pbb6TDYsmgQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Funnel Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4Pbb6dDYs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.social {
  padding: 5px;
  margin: 5px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.social a{
  font-size: 15px;
  color: #F4FFFE;
  border-style: inset;
  border-color: #2a0a5e;
  padding: 5px;
  margin: 5px;
  border-radius: 6px;
  display: inline-block
}

/* Social Media Links on mouse hover */
.social a:hover {
  background-color: #fac4a7;
  color: white;
  -webkit-transition: background-color 0.6s ease-out, color 0.6s ease-out;
  -moz-transition: background-color 0.6s ease-out, color 0.6s ease-out;
  -o-transition: background-color 0.6s ease-out, color 0.6s ease-out;
  transition: background-color 0.6s ease-out, color 0.6s ease-out;
}


footer {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: #e87341;
  font-weight: bold;
  color:#2a0a5e;
  z-index: 100;
}

.socials-toggle-btn{
  display: flex;
  position: fixed;
  bottom: 7.7%;
  left: 77%;
  background: linear-gradient(135deg, #e87341, #fac4a7);
  color: #2a0a5e;
  border: 2px solid #2a0a5e;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  z-index: 105;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-size: 14px;
}

footer h2 {
  display: block;
}

footer p {
  display: block;
}

.socials-toggle-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.socials-modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e87341;
  padding: 20px;
  z-index: 104;
  border-top: 3px solid #2a0a5e;
  animation: slideUp 0.3s ease;
}

.socials-modal.active {
  display: block;
}

.socials-modal h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.socials-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2a0a5e;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}