/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nature-inspired color palette */
    --forest-green: #2d5016;
    --earth-brown: #6b4423;
    --cream: #f5f2e8;
    --sunset-orange: #ff6b35;
    --light-green: #8fbc8f;
    --dark-green: #1a2f0f;
    --gold: #d4af37;
    
    /* Typography */
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondary-font);
    line-height: 1.6;
    color: var(--dark-green);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-green);
    border-top: 4px solid var(--forest-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('aburaj.jpg') center/cover fixed;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(45, 80, 22, 0.7) 0%, 
        rgba(107, 68, 35, 0.5) 50%, 
        rgba(45, 80, 22, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: var(--spacing-md);
    max-width: 900px;
}

.header {
    margin-bottom: var(--spacing-xl);
}

.logo h1 {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-xs);
    animation: fadeInDown 1s ease;
}

.tagline {
    font-family: var(--secondary-font);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--cream);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-text {
    margin-bottom: var(--spacing-xl);
}

.coming-soon {
    font-family: var(--primary-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 1.2s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    min-width: 100px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--primary-font);
    margin-bottom: var(--spacing-xs);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cream);
}

/* Email Subscription */
.subscription {
    animation: fadeInUp 1s ease 1.5s both;
}

.subscription-form {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscription-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscription-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.2);
}

.notify-btn {
    padding: 1rem 2rem;
    background: var(--sunset-orange);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.success-message {
    display: none;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(34, 139, 34, 0.9);
    border-radius: var(--border-radius-md);
    color: white;
    animation: fadeInUp 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-message i {
    margin-right: var(--spacing-xs);
    color: var(--gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.section-title {
    font-family: var(--primary-font);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sunset-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--forest-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--sunset-orange), var(--gold));
}

.feature-item h3 {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--earth-brown);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark-green), var(--forest-green));
}

.gallery .section-title {
    color: white;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--gold);
    font-family: var(--primary-font);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.gallery-overlay p {
    color: white;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--sunset-orange);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Social Section */
.social {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--sunset-orange);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
}

.footer-content h3 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.footer-content p {
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.footer-tagline {
    color: var(--light-green);
    font-style: italic;
    margin: var(--spacing-sm) 0;
}

.footer-bottom {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .countdown {
        gap: var(--spacing-sm);
    }
    
    .countdown-item {
        min-width: 80px;
        padding: var(--spacing-sm);
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .subscription-form {
        flex-direction: column;
        align-items: center;
    }
    
    .subscription-form input {
        min-width: 100%;
    }
    
    .notify-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .social-icons {
        gap: var(--spacing-sm);
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: var(--spacing-md);
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
a:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .social,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .loading-screen,
    .scroll-indicator {
        display: none !important;
    }
}
