.parallax-header {
    position: relative;
    width: 100%;
    height: 60vh; /* Reduced from 100vh to 60vh */
    overflow: hidden;
    margin-bottom: 2rem; /* Add some spacing after the header */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay */
    z-index: 1;
}

.parallax-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center; /* Center the video content */
}

.header-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem; /* Adjusted padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Make container full height */
}

.logo {
    max-width: 250px; /* Reduced logo size */
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .parallax-header {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .parallax-header {
        height: 40vh;
    }

    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .parallax-header {
        height: 35vh;
    }

    .logo {
        max-width: 140px;
    }

    .header-container {
        padding: 1rem;
    }
}

/* Optional: Add a gradient overlay for better visibility */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.4) 100%
    );
}

/* Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.auth-modal.active {
    display: flex;
}

.auth-modal.active .auth-container {
    transform: translateY(0);
    opacity: 1;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(184, 134, 11, 0.1);
    padding-bottom: 1rem;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.auth-tab.active {
    color: var(--primary-color);
}

.auth-tab.active::after {
    transform: scaleX(1);
}

.auth-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-close:hover {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: formFadeIn 0.5s ease;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    outline: none;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.auth-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--gold-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.auth-message {
    margin-top: 1rem;
    text-align: center;
    min-height: 24px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .auth-container {
        padding: 2rem;
    }

    .auth-tab {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.luxury-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.input-wrapper input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: transparent;
}

.input-wrapper input:focus {
    outline: none;
}

.input-wrapper button {
    background: var(--gold-gradient);
    border: none;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.input-wrapper button i {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.newsletter-message {
    min-height: 24px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-message.success {
    color: #2e7d32;
}

.newsletter-message.error {
    color: #c62828;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.75rem;
    }
}

/* Add these styles to your existing newsletter styles */
.newsletter-message.warning {
    color: #ff9800;
    margin-top: 1rem;
}

.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.try-again-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.try-again-btn:hover {
    color: #ff9800;
    text-decoration: none;
}

@media (max-width: 768px) {
    .error-message {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#logoutButton {
    color: #dc3545;
}

#logoutButton:hover {
    color: #bd2130;
}

/* Add or update these footer styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 6rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: right;
}

.footer-section h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: #ddd;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-section.about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .footer-section p {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
