/* ===== Crenzaza Reserve - Coming Soon Theme ===== */

/* CSS Variables - Luxury Theme */
:root {
    --primary-color: #8B5A3C;
    --primary-dark: #6B4430;
    --secondary-color: #D4AF37;
    --accent-color: #C9A961;
    --dark-bg: #1A1A1A;
    --darker-bg: #0F0F0F;

    --light-bg: #F8F6F3;
    --light-surface: #FFFFFF;
    --light-card: #FFFFFF;
    --text-primary: #2C2C2C;
    --text-secondary: #6B6B6B;
    --text-muted: #9B9B9B;
    --border-color: #E5E5E5;

    --gradient-primary: linear-gradient(135deg, #8B5A3C 0%, #D4AF37 100%);
    --gradient-secondary: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    --gradient-accent: linear-gradient(135deg, #C9A961 0%, #8B5A3C 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.main-heading {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.letter-spacing {
    letter-spacing: 3px;
    font-size: 0.875rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Navigation */
.navbar {
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: saturate(120%) blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1.25rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-primary) !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-scrolled {
    background: rgba(248, 246, 243, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(1400px 900px at 10% 20%, rgba(139, 90, 60, 0.08), transparent 40%),
                radial-gradient(1000px 800px at 90% 10%, rgba(212, 175, 55, 0.06), transparent 45%),
                linear-gradient(180deg, #F8F6F3 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 180deg at 50% 50%, rgba(139,90,60,0.08), rgba(212,175,55,0.06), rgba(201,169,97,0.05), rgba(139,90,60,0.08));
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

.coming-soon-content {
    padding: 2rem 0;
}

/* Countdown Timer */
.countdown-container {
    max-width: 600px;
    margin: 0 auto;
}

.countdown-box {
    background: var(--light-card);
    border-radius: 16px;
    padding: 2rem 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Subscription Form */
.subscription-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.subscription-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.subscription-form .form-control {
    flex: 1;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscription-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.15);
}

.subscription-form .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    white-space: nowrap;
}

.subscription-message {
    font-size: 0.9rem;
    min-height: 24px;
}

.subscription-message.success {
    color: #10b981;
}

.subscription-message.error {
    color: #ef4444;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.12;
    filter: blur(1px);
    animation: float 8s ease-in-out infinite;
}

.floating-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 8%;
    animation-delay: 2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.floating-4 {
    width: 140px;
    height: 140px;
    top: 35%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.bg-light {
    background-color: #F5F3F0 !important;
}

/* About Section */
.about-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-content .lead {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 400;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.feature-card {
    padding: 2rem 1rem;
    background: var(--light-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.feature-card h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 1rem;
}

.feature-card h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-card {
    background: var(--light-card);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-info h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.contact-info h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
}

.contact-info p {
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: var(--gradient-primary);
}

.btn-outline-light {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-secondary);
    color: var(--light-bg);
    transform: translateY(-2px);
}

/* Form Styles */
.form-control {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(248,246,243,0.8), #ffffff);
    border-top: 1px solid var(--border-color);
}

.footer h5, .footer h6 {
    color: var(--text-primary);
}

.footer p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-heading {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-number {
        font-size: 2.25rem;
    }
    
    .subscription-form-container {
        padding: 2rem 1.5rem;
    }
    
    .subscription-form .input-group {
        flex-direction: column;
    }
    
    .subscription-form .btn {
        width: 100%;
        border-radius: 12px;
    }
    
    .subscription-form .form-control {
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2.25rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-box {
        padding: 1.5rem 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
