/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    color: #333;
    overflow-x: hidden;
}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}



/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-button {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

/* Style for the Sign In button */
.auth-button.sign-in {
    background-color: #990606;
    color: white;
}

.auth-button.sign-in:hover {
    background-color: #b30707;
    transform: translateY(-2px);
}

.auth-button.sign-in:active {
    transform: translateY(0);
}

/* Style for the Sign Up button */
.auth-button.sign-up {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-button.sign-up:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.auth-button.sign-up:active {
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}

/* Custom scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #111;
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .auth-button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 5%;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    nav {
        gap: 15px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .auth-button {
        padding: 6px 12px;
        font-size: 11px;
    }
}
/* Responsive adjustments */
@media (max-width: 600px) {
    .top-right-buttons {
        top: 10px;
        right: 10px;
    }
    .auth-button {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1.2s ease-out forwards;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #990606;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #b30707;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 6, 6, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* User welcome message */
.user-welcome {
    font-size: 16px;
    color: #fff;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.user-welcome.visible {
    opacity: 1;
    transform: translateX(-50%);
}

.hidden {
    display: none !important;
}

/* Animation keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

/* About and Features Sections */
.about-section,
.features-section {
    padding: 100px 5%;
    color: #fff;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.section-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    background-color: rgba(0, 0, 0, 0.7);
}

.features-section {
    background-color: rgba(10, 10, 10, 0.8);
}

/* Section headings */
.about-section h2,
.features-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

/* Divider line */
.divider {
    height: 3px;
    width: 60px;
    background-color: #990606;
    margin: 0 auto 40px;
}

/* About section paragraph */
.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 2.5rem;
    color: #990606;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section,
    .features-section {
        padding: 70px 5%;
    }
    
    .about-section h2,
    .features-section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-section,
    .features-section {
        padding: 50px 5%;
    }
    
    .about-section h2,
    .features-section h2 {
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px 5%;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #990606;
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5%;
    }
    
    .social-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 5%;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .social-icon {
        font-size: 18px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: white;
}

.social-media {
    margin-bottom: 10px; /* Space between icons and text */
    display: flex; /* Use flexbox to align the icons without space */
    justify-content: center; /* Center the icons horizontally */
}

.social-icon {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
    margin: 0; /* Remove any margin between the icons */
    padding: 0 10px; /* Add some space between icons */
}

.social-icon:hover {
    transform: scale(1.1); /* Hover effect */
    color: #007bff; /* Change color on hover */
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    color: #990606;
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    color: #fff;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #990606;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #b30707;
}

.cookie-btn.decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}
