:root {
    --color-light-blue: #fffcf0;
    --color-yellow: #F2B705;
    --color-orange: #F29F05;
    --color-dark-orange: #BF6B04;
    --color-brown: #8C4303;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bellota Text', cursive;
}

body {
    background-color: var(--color-light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.coming-soon {
    margin-bottom: 40px;
    text-align: center;
}

.coming-soon h1 {
    font-size: 3rem;
    color: var(--color-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-container {
    position: relative;
    width: 300px; /* Increased from 200px to accommodate larger logo */
    height: 300px; /* Increased from 200px to accommodate larger logo */
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ring {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ring__circle {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    transform-origin: center;
}

.progress-ring__background {
    fill: transparent;
    stroke: rgba(242, 159, 5, 0.3);
    stroke-width: 8px;
    cx: 150px; /* Center X coordinate */
    cy: 150px; /* Center Y coordinate */
    r: 140px; /* Radius that matches the container */
}

.progress-ring__progress {
    fill: transparent;
    stroke: var(--color-orange);
    stroke-width: 8px;
    stroke-dasharray: 879.65; /* 2 * PI * 140 */
    stroke-dashoffset: 879.65;
    transition: stroke-dashoffset 0.5s ease;
    cx: 150px; /* Center X coordinate */
    cy: 150px; /* Center Y coordinate */
    r: 140px; /* Radius that matches the container */
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px; /* Increased from 160px (50% larger) */
    height: 240px; /* Increased from 160px (50% larger) */
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#logo-img {
    max-width: 80%;
    max-height: 80%;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-card h2 {
    color: var(--color-dark-orange);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-yellow);
    width: 30px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 270px; /* Increased to accommodate larger logo */
        height: 270px; /* Increased to accommodate larger logo */
    }
    
    .logo {
        width: 210px; /* Increased from 140px (50% larger) */
        height: 210px; /* Increased from 140px (50% larger) */
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .logo-container {
        width: 300px; /* Increased to accommodate larger logo */
        height: 300px; /* Increased to accommodate larger logo */
        margin: 0 auto 40px;
    }
    
    .logo {
        width: 240px; /* Increased from 160px (50% larger) */
        height: 240px; /* Increased from 160px (50% larger) */
    }
    
    /* Fix SVG sizing and positioning for mobile */
    .progress-ring__circle {
        width: 300px; /* Increased to match container */
        height: 300px; /* Increased to match container */
    }
    
    /* Adjust the circle radius for mobile to ensure proper centering */
    .progress-ring__background,
    .progress-ring__progress {
        cx: 150px; /* Updated center X coordinate */
        cy: 150px; /* Updated center Y coordinate */
        r: 140px; /* Updated radius to match the container */
    }
    
    .contact-card {
        padding: 20px;
        
    }
    
    .contact-item {
        font-size: 1rem;
    }
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-orange);
}