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

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(160deg, #DCC7B7 0%, #A25230 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-section {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.coming-soon {
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.coming-soon p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.divider {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 1.5rem auto;
    border-radius: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

#openContact{
    background: #A25230;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 250px;
    }

    .coming-soon h1 {
        font-size: 2.5rem;
    }

    .coming-soon p {
        font-size: 1.2rem;
    }

    .circle:nth-child(1) {
        width: 120px;
        height: 120px;
    }

    .circle:nth-child(2) {
        width: 90px;
        height: 90px;
    }

    .circle:nth-child(3) {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }
}