@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


:root {
    --primary: #E8B07C;
    --primary-dark: #d89a5f;
    --primary-light: #f5d1b0;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    
}


.logo {
    margin-bottom: 50px;
    text-align: center;
}

.logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.logo, .hero-text, .value-props, .popular-searches {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}


.logo { animation-delay: 0.1s; }
.hero-text { animation-delay: 0.3s; }
.value-props { animation-delay: 0.5s; }
.popular-searches { animation-delay: 0.7s; }

.logo img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
    transform: scale(1.05);
}



form {
    width: 100%;
    max-width: 600px;
    position: relative;
}


.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(233, 179, 127, 0.15);
    padding: 8px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
}

.search-bar:hover,
.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 25px rgba(233, 179, 127, 0.25);
    transform: translateY(-2px);
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 1.1em;
    flex: 1;
    background: transparent;
    padding: 12px;
    color: var(--dark);
}

.search-bar input::placeholder {
    color: var(--gray);
}

.search-bar i {
    color: var(--primary);
    font-size: 1.2em;
    margin-right: 10px;
}

.dropdown .btn-secondary {
    background: var(--primary) !important;
    border: none !important;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;

}

.dropdown .btn-secondary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}


#dropdownToggle {
    background: none;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

#dropdownToggle:hover {
    background: var(--primary-light);
}

#dropdownToggle i {
    color: var(--primary);
    font-size: 1.3em;
}



.btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#btn-primary {
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 1.1em;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 179, 127, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 179, 127, 0.4);
    background: var(--primary-dark);
}



.comments{
    color: var(--gray);
    text-decoration: none;
}

.comments:hover{
    color: var(--primary);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: var(--gray);
    padding: 20px 0;
    font-size: 0.95em;
    z-index: 2;
}



@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}







.profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(233, 179, 127, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.profile-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 179, 127, 0.4);
}

.profile-icon.small {
    width: 40px;
    height: 40px;
    font-size: 1em;
}

.profile-icon.large {
    width: 70px;
    height: 70px;
    font-size: 1.5em;
}


.profile-icon.secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.profile-icon.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}



@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}


@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5em;
    color: var(--dark);
    margin-top: -30px;
    font-weight: 700;
}

.tagline {
    font-size: 1.2em;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
}


.value-props {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.prop {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95em;
}

.prop .icon {
    font-size: 1.2em;
}



.popular-searches {
    text-align: center;
    margin: 30px 0;
}

.popular-searches p {
    color: var(--gray);
   
    font-size: 0.9em;
}

.search-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;

}

.search-tags a {
    background: var(--primary-light);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.search-tags a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}


.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 179, 127, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 179, 127, 0.4);
}

.cta-note {
    color: var(--gray);
    font-size: 0.9em;
    margin-top: 8px;
}


@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .value-props {
        gap: 20px;
    }
    
    .prop {
        font-size: 0.9em;
    }
    
    .search-tags {
        gap: 8px;
    }
    
    .search-tags a {
        font-size: 0.85em;
        padding: 5px 10px;
    }

    
}