/* ==========================================================================
   DARA Coming Soon Website Style Sheet
   ========================================================================== */

/* Design System Variables */
:root {
    --bg-dark: #0a0909;
    --bg-card: rgba(22, 20, 20, 0.7);
    --bg-card-hover: rgba(30, 27, 27, 0.85);
    --border-color: rgba(223, 186, 157, 0.2);
    --border-hover: rgba(242, 122, 84, 0.5);
    
    /* Brand Colors matching the logo gradient */
    --brand-primary: #f27a54; /* Coral Orange */
    --brand-secondary: #ff9a76; /* Soft Peach */
    --brand-gold: #dfba9d; /* Champagne Gold */
    --brand-gold-dark: #b8977e;
    
    /* Text Colors */
    --text-light: #f5ebe0;
    --text-muted: #a69f98;
    --text-dark: #1c1a19;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', 'Montserrat', sans-serif;
    
    /* Shadows */
    --glow-shadow: 0 0 20px rgba(242, 122, 84, 0.15);
    --glow-shadow-hover: 0 0 35px rgba(242, 122, 84, 0.3);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(242, 122, 84, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Background Canvas for Interactive Sparks */
#sparkleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Container & Layout */
.site-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.main-header {
    padding: 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Glassmorphic White Container to keep Logo dark lettering visible */
.logo-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(223, 186, 157, 0.4);
    box-shadow: 0 8px 32px 0 rgba(242, 122, 84, 0.12), 0 0 20px rgba(255, 255, 255, 0.05);
    padding: 1.2rem 2.8rem;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.logo-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px 0 rgba(242, 122, 84, 0.25), 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: var(--brand-primary);
}

.brand-logo {
    max-height: 65px;
    width: auto;
    display: block;
    user-select: none;
}

@media (max-width: 576px) {
    .logo-wrapper {
        padding: 1rem 1.8rem;
    }
    .brand-logo {
        max-height: 48px;
    }
}

/* Hero Section */
.hero-section {
    padding: 2rem 0 4rem 0;
    text-align: center;
}

.sub-headline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand-gold);
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeIn 1.2s ease;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: fadeIn 1.5s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #ffc0a9 50%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(242, 122, 84, 0.15);
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    animation: fadeIn 1.8s ease;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: slideUp 1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.time-block {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 100px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow);
}

.time-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 576px) {
    .countdown-container {
        gap: 0.8rem;
    }
    .time-block {
        min-width: 80px;
        padding: 1rem;
    }
    .time-number {
        font-size: 2.2rem;
    }
}

/* Newsletter Subscription Card */
.subscription-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    animation: slideUp 1.2s cubic-bezier(0.1, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 122, 84, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.subscription-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.subscription-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.3rem;
    transition: all 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--brand-primary);
    box-shadow: var(--glow-shadow);
}

.notify-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

.notify-form input[type="email"]::placeholder {
    color: #595552;
}

/* Button Styles */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #e06037 100%);
    color: white;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 15px rgba(242, 122, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 122, 84, 0.5);
    background: linear-gradient(135deg, #ff8c68 0%, var(--brand-primary) 100%);
}

.btn-secondary {
    background: rgba(223, 186, 157, 0.08);
    border: 1px solid var(--border-color);
    color: var(--brand-gold);
    padding: 0.7rem 1.5rem;
}

.btn-secondary:hover {
    background: rgba(223, 186, 157, 0.15);
    border-color: var(--brand-gold);
    color: white;
    transform: translateY(-2px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    text-align: left;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--brand-primary);
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.form-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    transition: all 0.3s ease;
}

.form-feedback.success {
    color: #52b788;
}

.form-feedback.error {
    color: #e63946;
}

@media (max-width: 576px) {
    .subscription-card {
        padding: 1.8rem;
    }
    .form-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 0.8rem;
    }
    .form-group input[type="email"] {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-color);
        border-radius: 25px;
    }
    .form-group input[type="email"]:focus {
        border-color: var(--brand-primary);
    }
    .btn-primary {
        width: 100%;
        padding: 1rem;
    }
}

/* Sneak Peek Gallery */
.sneak-peek-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(22, 20, 20, 0.4) 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(223, 186, 157, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow-hover);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 9, 9, 0.9) 100%);
}

.card-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--brand-gold);
    font-weight: 600;
}

.item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .sneak-peek-section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        gap: 1.8rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(223, 186, 157, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a.info-card:hover {
    transform: translateX(6px);
    border-color: var(--brand-primary);
    box-shadow: var(--glow-shadow);
}

.info-icon {
    background: rgba(242, 122, 84, 0.1);
    color: var(--brand-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 0 15px rgba(242, 122, 84, 0.4);
}

/* WhatsApp branded theme when hovered */
a.info-card:hover .whatsapp-theme {
    background: #25d366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

.info-card:hover .info-value {
    color: white;
}

/* Map Card and Placeholder Styling */
.map-card {
    height: 100%;
    min-height: 380px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: #121010;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(242, 122, 84, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 122, 84, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2.5rem;
    background: rgba(10, 9, 9, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(223, 186, 157, 0.1);
    border-radius: 20px;
    max-width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.marker-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
}

.map-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-primary), #e06037);
    color: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 122, 84, 0.5);
    border: 2px solid var(--text-light);
}

/* Re-orient the text inside the rotated marker */
.map-marker::after {
    content: 'D';
    position: absolute;
    transform: rotate(45deg);
}

.pulse-ring {
    border: 3px solid var(--brand-primary);
    border-radius: 30px;
    height: 60px;
    width: 60px;
    position: absolute;
    left: -5px;
    top: -5px;
    animation: pulsate 1.8s ease-out infinite;
    opacity: 0;
}

.map-location-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-location-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #110f0f;
    border: 1px solid var(--border-hover);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--glow-shadow);
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--brand-primary);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(82, 183, 136, 0.1);
    color: #52b788;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    box-shadow: 0 0 20px rgba(82, 183, 136, 0.2);
}

.modal-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.modal-email {
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
    font-size: 1.1rem !important;
    word-break: break-all;
    margin-bottom: 2rem !important;
}

.modal-card .btn {
    width: 100%;
    padding: 0.9rem;
}

/* Footer Styling */
.main-footer {
    padding: 3rem 1.5rem;
    text-align: center;
    background: #070606;
    border-top: 1px solid rgba(223, 186, 157, 0.03);
    margin-top: auto;
}

.main-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

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

@keyframes pulsate {
    0% { transform: scale(0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}
