/* Global Styles */
:root {
    --primary-green: #0a5f38;
    --dark-green: #053b23;
    --accent-gold: #f0e68c;
    --text-color: #ffffff;
    --pattern-opacity: 0.15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-green);
    /* Fallback gradient if image fails */
    background-image: radial-gradient(circle at center, #137a4d 0%, var(--primary-green) 70%, var(--dark-green) 100%);
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    /* Changed from height: 100vh */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
    padding: 20px;
    /* Add padding for small screens */
}

/* Layout */
.container {
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1.5s ease-out;
    width: 100%;
    max-width: 600px;
}

/* Decorative Corners */
.corner {
    position: absolute;
    width: 150px;
    height: 150px;
    border-color: var(--accent-gold);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
}

.corner-top-left {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
}

.corner-top-right {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
}

.corner-bottom-left {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
}

.corner-bottom-right {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
}

/* Logo Section */
.logo-container {
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(240, 230, 140, 0.2);
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker background due to image overlay */
    backdrop-filter: blur(5px);
}

.logo-placeholder::before,
.logo-placeholder::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(240, 230, 140, 0.5);
    border-radius: 50%;
}

.logo-placeholder::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(240, 230, 140, 0.3);
}

.calligraphy-circle {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 3s infinite ease-in-out;
}

/* Text Styling */
.website-url {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    word-break: break-all;
    /* Ensure long URLs wrap on very small screens */
}

.coming-soon-text {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-top: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .website-url {
        font-size: 1.5rem;
        /* Adjusted smaller */
    }

    .coming-soon-text {
        font-size: 2rem;
    }

    .logo-placeholder {
        width: 140px;
        height: 140px;
    }

    .calligraphy-circle {
        font-size: 2.2rem;
    }

    .corner {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .website-url {
        font-size: 1.2rem;
    }

    .coming-soon-text {
        font-size: 1.8rem;
    }

    .logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .corner {
        width: 50px;
        height: 50px;
        border-width: 1px;
        /* Thinner border for small screens */
    }

    .corner-top-left {
        border-width: 1px 0 0 1px;
    }

    .corner-top-right {
        border-width: 1px 1px 0 0;
    }

    .corner-bottom-left {
        border-width: 0 0 1px 1px;
    }

    .corner-bottom-right {
        border-width: 0 1px 1px 0;
    }

    body {
        background-color: #016f3c;
        background-size: contain !important;
        background-repeat: no-repeat;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}