* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    zoom: 1.0;
    font-family: 'Poppins', sans-serif;
    background-color: #fffcfd;
}

header {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    /*background-color: #F2E7DD;
    background-color: #f2d6ce;*/
    background-color: #fffcfd;
}

.logo img {
    width: 120px;
}

nav ul {
    font-family: 'Poppins', sans-serif;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 8px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
}

.secbtn {
    /*background-color: #f2d6ce;
    background-color: #ff80ab;*/
    font-family: 'Poppins', sans-serif;
    background-color: #f1668b;
    color: white;
    padding: 10px 13px;
    border-radius: 5px;
}

.dropdown {
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    font-family: 'Poppins', sans-serif;
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(195, 155, 155, 0.414);
    min-width: 178px;
    z-index: 1;
}

.dropbtn {
    font-family: 'Poppins', sans-serif;
    padding: 10px 13px;
    border-radius: 5px;
    font-size: 16px;
}

nav ul li .dropbtn {
    background-color: #f1668b;
    color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

nav ul li a.secbtn:hover {
    background-color: #f2d6ce;
    color: #333;
}

nav ul li .dropbtn:hover {
    background-color: #f2d6ce;
    color: #333;
}


.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
}

.dropdown-content a:hover {
    background-color: #f1ebe9;
}

.section {
    height: 100vh;
    width: 100%;
    background: url('blossom6.jpg') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    transform: none;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.section-content {
    position: relative;
    z-index: 2;
}

.section h1 {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.section p {
    font-family: 'Poppins';
    font-size: 19px;
    margin-bottom: 20px;
}

.main-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 12px 20px;
    background-color: #f1668b;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.main-btn:hover {
    background-color: #d9b99f;
} 

.icon {
    margin-top: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.icon:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
    
    header {
        display: flex;
        padding: 10px 30px;
    } 
        
    .logo img {
        width: 100px;
    }     
        
    nav ul li:nth-child(3) {
        order: 1; 
        margin-right: 5px; 
    }
    nav ul li:nth-child(1) {
        order: 2;
    }
    
    nav ul li {
    margin: 0 2px;
    }
    
    .btn {
        padding: 7px 25px;
        border-radius: 2px;
        font-size: 11px;
        margin: 10px 0; 
    }
    
    .dropbtn {
        margin-left: 35px;
        padding: 7px 25px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .dropdown-content {
        margin-left: 35px;
    }
    
    .secbtn {
        display: none;
    }
    
    .section {
        width: 100%;
        display: flex;
        position: relative;
        min-height: 595px;
        padding: 10px; 
        background-position: top; 
    }
    
    .section h1 {
        font-size: 28px
    }

    .section p {
        font-size: 14px;
    }

    .icon {
        margin-top: 4px;
        width: 25px;
        height: 25px;
    }

    .dbbtn {
        font-size: 12px;
    }
}