/* Basic Reset */
* {
    grid-template-rows: 100px auto 50px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'DM Serif Display';
    background-color: #f8d2ed;
    color: #333;
}

/* Header Styles */
header {
    background-color:  #f8d2ed;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    width: 150px;
    margin-left: 20px;
    flex-direction: column;
    display: flex;
    align-items: center; 
    gap: 5px;
}

header h1 {
  font-family:'DM Serif Display';
  font-size: 70px;
  text-align: center;
  color:#6c8df0;
  font-weight:bold;
  display:flex;
  align-items:flex-start;
  margin-top: -30px;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
 margin: 40px 0;
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: bold;
    color:purple;
    margin-left: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #333;
    font-family: 'DM Serif Display', serif;
    text-decoration: none;
    font-weight: bold;
    margin-right: 0%;
    font-size: 25px;
    transition: font-size 0.3s ease;
}

/* Contact Section Styles */
.contact-section {
    padding: 40px;
    background-color: #fff;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
    font-family:'DM Serif Display';
    font-size: 25px;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    font-family:'DM Serif Display';
    margin-bottom: 8px;
    font-size: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #ebb9b9;
    border-radius: 5px;
    font-family:'DM Serif Display';
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: lightcoral;
}

.contact-form button {
    background-color: #f95682;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #fb4566;
}

footer {
    background-color: #f8d2ed; /* lighter pink */
    color: #000;               /* black text */
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
    font-family:'DM Serif Display';
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

/* Make sure footer content fills width */
footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
}


/* ---------------- RESPONSIVE DESIGN ---------------- */
@media (max-width: 1024px) {
    header h1 {
        font-size: 50px;
        margin-top: -10px;
        font-family:'DM Serif Display';
    }
    header nav ul li a {
        font-size: 20px;
        font-family:'DM Serif Display';
    }
    .brand-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo img {
        width: 120px;
        margin: 0 auto;
    }

    header h1 {
        position: static;
        transform: none;
        font-size: 40px;
        margin: 10px 0;
        font-family: 'DM Serif Display', serif;

    }

    header nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    header nav ul li {
        margin: 10px 0;
        font-family:'DM Serif Display';
 
    }

    .contact-section {
        padding: 20px;
    }

    .contact-section h3 {
        font-size: 20px;
        font-family:'DM Serif Display';
    }

    .contact-form input,
    .contact-form textarea {
        max-width: 100%;
    }

    footer {
        font-size: 12px;
        font-family:'DM Serif Display';
    }
}

@media (max-width: 480px) {
    header .logo img {
        width: 100px;
    }

    .brand-name {
        font-size: 20px;
    }

    header h1 {
        font-size: 32px;
        font-family:'DM Serif Display';
        color:#6c8df0;
    }

    header nav ul li a {
        font-size: 18px;
        font-family:'DM Serif Display';
 
    }

    .contact-section h3 {
        font-size: 18px;
    }

    .contact-form label {
        font-size: 16px;
    }

    .contact-form button {
        width: 100%;
    }
}

.btn-group {
    display: flex;
    gap: 15px;  /* space between buttons */
    flex-wrap: wrap; /* allow wrapping if too narrow */
    justify-content: center;
}

.btn-group button {
    flex: 1; /* buttons resize evenly */
    min-width: 120px; /* prevents buttons from shrinking too small */
    font-family:'DM Serif Display';
}

/* On very small screens, add extra vertical spacing */
@media (max-width: 480px) {
    .btn-group {
        flex-direction: column; /* stack buttons vertically */
        gap: 10px; /* vertical gap */
    }

    .btn-group button {
        width: 100%; /* full width for easy tapping */
    }
}
/* Hide hamburger by default (desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  font-family: 'DM Serif Display', serif;  
}

/* Show hamburger on smaller screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hide nav by default on mobile */
  nav {
    display: none;
    width: 100%;
  }

  /* Show nav when active */
  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    background-color: #f8d2ed;
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 20px;
  }
}
































