:root {
    --primary-color: #c8a050;
    --secondary-color: #8b7333;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f8f8f8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-color);
    position: relative;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 160, 80, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 51, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 160, 80, 0.06) 0%, transparent 70%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(200, 160, 80, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 160, 80, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Animated Waves - Removed */

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    max-width: 100vw;
    overflow-x: hidden;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(200, 160, 80, 0.2);
    overflow-x: hidden;
}

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

.logo-container {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

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

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* Countdown */
.coming-soon {
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 1s backwards;
}

.coming-soon h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(200, 160, 80, 0.3);
    min-width: 70px;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
}

.number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar Section */
.progress-section {
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 1.2s backwards;
    display: flex;
    justify-content: center;
}

.progress-info {
    display: none;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.progress-label {
    position: relative;
    z-index: 3;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    order: 1;
}

.progress-days {
    display: none;
}

.progress-percentage {
    position: relative;
    z-index: 3;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    order: 2;
}

.progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    transition: width 1s ease-out;
    box-shadow: 0 0 20px rgba(200, 160, 80, 0.5);
    z-index: 1;
    overflow: hidden;
}

.progress-bar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.progress-bar-fill .progress-bar-glow {
    width: 100%;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Contact Info */
.contact-info {
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem 2rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 1.4s backwards;
    max-width: 100%;
}

.contact-info .contact-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-wrap: wrap;
    max-width: 100%;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 1.4s backwards;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(200, 160, 80, 0.3);
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Background Windows and Doors */
.background-windows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-window,
.bg-door {
    position: absolute;
    opacity: 0.20;
    animation: floatWindow 20s ease-in-out infinite;
    pointer-events: auto;
    cursor: grab;
    transition: opacity 0.3s ease, transform 0.1s ease;
    user-select: none;
}

.bg-window:hover,
.bg-door:hover {
    opacity: 0.45;
    animation-play-state: paused;
}

.bg-window:active,
.bg-door:active {
    cursor: grabbing;
    opacity: 0.60;
    animation-play-state: paused;
}

.bg-window.dragging,
.bg-door.dragging {
    z-index: 5;
    transition: none;
}

.bg-window {
    width: 80px;
    height: 100px;
    border: 3px solid var(--primary-color);
    border-radius: 3px;
    position: relative;
}

.bg-window::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.bg-window::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.bg-door {
    width: 60px;
    height: 100px;
    border: 3px solid var(--secondary-color);
    border-radius: 5px;
    position: relative;
}

.bg-door::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

@keyframes floatWindow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.20;
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
        opacity: 0.28;
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
        opacity: 0.20;
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
        opacity: 0.28;
    }
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: float linear infinite;
    box-shadow: 0 0 10px var(--primary-color),
                0 0 20px var(--primary-color),
                0 0 30px rgba(200, 160, 80, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-info .contact-item:last-child {
        grid-column: auto;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    .progress-section {
        margin: 1.5rem 0;
    }
    
    .progress-bar-container {
        height: 30px;
        padding: 0 0.75rem;
        max-width: 500px;
    }
    
    .progress-label {
        font-size: 0.7rem;
    }
    
    .progress-percentage {
        font-size: 0.9rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.6rem 0.8rem;
        min-width: 65px;
    }
    
    .number {
        font-size: 1.3rem;
    }
    
    .label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .number {
        font-size: 1.5rem;
    }
    
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .contact-info .contact-item:last-child {
        grid-column: auto;
    }
    
    .contact-item {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .contact-item a {
        text-align: center;
        word-break: break-word;
    }
    
    .contact-item svg {
        width: 16px;
        height: 16px;
    }
    
    .progress-section {
        margin: 1.5rem 0;
    }
    
    .progress-bar-container {
        height: 28px;
        padding: 0 0.75rem;
        gap: 1rem;
        max-width: 100%;
    }
    
    .progress-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
    
    .progress-percentage {
        font-size: 0.85rem;
    }
    
    .countdown {
        gap: 0.4rem;
    }
    
    .time-unit {
        padding: 0.5rem 0.7rem;
        min-width: 55px;
    }
    
    .number {
        font-size: 1.1rem;
    }
    
    .label {
        font-size: 0.6rem;
    }
}


