* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.navbar {
    display: flex;
    background-color: rgb(230, 93, 116);
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
}

.logo {
    font-family: Brush script Mt;
    font-size: 23px;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

h2 {
    margin-top: 40px;
    text-align: center;
}

hr {
    width: 13%;
    margin: auto;
    border: 2px solid black;
    border-radius: 5px;
    margin-top: 10px;
}

.header {
    position: relative;
    background: url('adam-winger-WXmHwPcFamo-unsplash.jpg') no-repeat center center/cover;
    height: 80vh;
    color: #000;
}

.content {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 60px;
    bottom: 70px;
}

.content h1 {
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 20px;
    color: #555;
}

.cta-btn {
    background: #f23a8f;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: #d71f75;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px;
}

.gallery img {
    width: 300px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(230, 93, 116);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 12px 24px;
    margin: 10px 20px;
}

.btn:hover {
    background: #d71f75;
}

.blog {
    padding: 60px;
}

.blog-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: auto;
    gap: 20px;
    box-shadow: 5px 10px 8px #fff1f1;
}

.bg {
    flex: 0 0 48%;
}

.blog-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content h3 {
    margin-top: 50px;
}

.blog-content p {
    margin-top: 30px;
}

.blog-content button {
    font-size: 15px;
    font-weight: bold;
    background-color: rgb(230, 93, 116);
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 14px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 14px;
}

.blog-card img {
    height: 400px;
    border-radius: 8px;
    margin: auto 15px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 500px;
    height: 500px;
    border-radius: 6px;
    object-fit: cover;
}

.about-text {
    max-width: 500px;
    padding: 20px;
}

.about-text h2 {
    text-align: left;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 2px solid black;
    display: inline-block;
    padding-bottom: 5px;
}

.about-text p {
    margin-top: 30px;
    line-height: 1.6;
}

.btn-2 {
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(230, 93, 116);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 12px 24px;
    margin-top: 25px;
}

.btn-2:hover {
    background: #d71f75;
}

.container-form {
    padding: 40px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 40px auto;
}

.container-form h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.button {
    margin-top: 25px;
    text-align: center;
}

button {
    background: #f54291;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}

button:hover {
    background: #d71f75;
}

.testimonials {
    text-align: center;
    padding: 40px 20px;
}

.testimonials h3 {
    color: rgb(230, 93, 116);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    max-width: 600px;
    margin: auto;
}

.testimonial-text p {
    margin: 15px 0;
    line-height: 1.6;
}

.testimonial-text h4 {
    margin-top: 20px;
    font-weight: bold;
}

.footer {
    background: #222;
    color: #ccc;
    padding-top: 40px;
    border-top: 1px solid #444;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    gap: 20px;
}

.footer-box {
    flex: 1;
    min-width: 200px;
}

.footer-box h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-box p {
    font-size: 14px;
    line-height: 22px;
    color: #aaa;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #e91e63;
}

.footer-box .contact-info li {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
    color: #aaa;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 40px;
    }

    .nav-links {
        gap: 20px;
    }

    .content {
        left: 40px;
        bottom: 50px;
        max-width: 350px;
        padding: 25px 30px;
    }

    .content h1 {
        font-size: 24px;
    }

    .gallery img {
        width: 280px;
    }

    .blog {
        padding: 40px;
    }

    .about {
        padding: 40px 20px;
    }

    .about-img img {
        width: 450px;
        height: 450px;
    }

    .about-text {
        max-width: 450px;
    }
}

/* Tablet Medium (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(230, 93, 116, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 20px;
    }

    .header {
        height: 70vh;
    }

    .content {
     
        bottom: 30px;
        max-width: 90%;
        padding: 20px 25px;
    }

    .content h1 {
        font-size: 22px;
    }

    .content p {
        font-size: 14px;
    }

    hr {
        width: 20%;
    }

    .gallery img {
        width: 45%;
        height: auto;
        min-height: 150px;
    }

    .blog {
        padding: 30px 20px;
    }

    .blog-card {
        flex-direction: column;
        gap: 20px;
    }

    .bg {
        flex: 1;
        width: 100%;
    }

    .blog-card img {
        height: auto;
        max-height: 300px;
        margin: 0;
    }

    .blog-content h3 {
        margin-top: 20px;
    }

    .blog-content p {
        margin-top: 15px;
    }

    .about {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .about-img img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .about-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        margin-top: 20px;
    }

    .container-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .footer-box {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Mobile Large (480px and below) */
@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .header {
        height: 60vh;
    }

    .content {
        padding: 15px 20px;
        bottom: 20px;
    }

    .content h1 {
        font-size: 18px;
    }

    .content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .cta-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    hr {
        width: 30%;
    }

    .gallery {
        margin: 15px 10px;
        gap: 10px;
    }

    .gallery img {
        width: 100%;
        height: auto;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .blog {
        padding: 20px 15px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .about {
        padding: 20px 15px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .container-form {
        padding: 20px 15px;
    }

    .container-form h2 {
        font-size: 20px;
    }

    input,
    select {
        padding: 8px 10px;
        font-size: 13px;
    }

    button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .testimonials {
        padding: 30px 15px;
    }

    .testimonials h3 {
        font-size: 18px;
    }

    .testimonial-text p {
        font-size: 14px;
    }

    .footer-container {
        padding: 20px 15px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px 10px;
    }
}

/* Mobile Extra Small (360px and below) */
@media (max-width: 360px) {
    .logo {
        font-size: 18px;
    }

    .content h1 {
        font-size: 16px;
    }

    .content p {
        font-size: 12px;
    }

    h2 {
        font-size: 18px;
    }

    .gallery img {
        width: 100%;
    }

    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}