/* 
Citchen Brand Colors:
- Citchen Citrine: #C09C3A
- Citchen Cannonball: #2D2D2C
- Citchen Cotton: #FFF9ED
*/

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

html {
    height: 100%;
    overflow: hidden; /* Disable scrolling */
}

body {
    font-family: 'Corbel', 'Corbel Light', Arial, sans-serif;
    background-color: #2D2D2C;
    color: #FFF9ED;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer; /* Indicate clickable area */
}

/* Background styles */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

/* Set background images for each domain */
body.design-bg {
    background-image: url('../images/citchen-design-kitchen-specialist-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.uk-bg {
    background-image: url('../images/citchen-uk-kitchen-specialist-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.it-bg {
    background-image: url('../images/citchen-italia-kitchen-specialist-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 45, 44, 0.6);
    z-index: -1;
}

/* Header styles */
header {
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Left align */
    align-items: center;
    margin-bottom: 0;
    padding-left: 20px; /* Add some padding from the left edge */
}

.logo {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 0; /* Remove auto margin */
}

/* Main content styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.content-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

.content-box {
    max-width: 600px; /* Wider on larger screens */
    width: 90%; /* Uses percentage width instead of 100% to help with centering */
    margin: 0 auto; /* Center horizontally */
    background-color: rgba(45, 45, 44, 0.8); /* Cannonball with 0.8 opacity */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 40px 40px 30px;
    transition: opacity 0.4s ease;
}

.content-box.hidden {
    opacity: 0;
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
}

h1 {
    font-family: 'Corbel', Arial, sans-serif;
    font-size: 36px;
    color: #C09C3A;
    margin-bottom: 50px;
    opacity: 1;
}

/* Divider removed */

.lead-text {
    font-size: 18px;
    font-family: 'Corbel Light', Arial, sans-serif;
    margin-top: 20px;
    margin-bottom: 25px;
    color: #FFF9ED; /* Citchen Cotton */
}

.description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF9ED; /* Citchen Cotton */
    font-family: 'Corbel Light', Arial, sans-serif;
    text-align: justify;
}

/* Removed contact info styles */

/* Flash messages */
.flash-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #155724;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #721c24;
}

/* Click indicator - maybe add a subtle hint about clicking */
.click-indicator {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0.7;
    font-size: 14px;
    color: #FFF9ED;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 0.9; }
    100% { opacity: 0.4; }
}

/* Footer styles */
footer {
    padding: 15px;
    text-align: center;
    color: #FFF9ED;
    font-size: 14px;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-box {
        padding: 30px 20px 20px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .lead-text {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 20px;
        color: #FFF9ED; /* Citchen Cotton */
    }
    
    .description {
        font-size: 14px;
        line-height: 1.4;
        color: #FFF9ED; /* Citchen Cotton */
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .content-box {
        width: 70%;
        padding: 25px 15px 20px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    h1 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .lead-text {
        font-size: 15px;
        margin-top: 12px;
        margin-bottom: 15px;
        color: #FFF9ED; /* Citchen Cotton */
    }
    
    .description {
        font-size: 13px;
        line-height: 1.4;
        color: #FFF9ED; /* Citchen Cotton */
        text-align: justify;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    footer {
        padding: 10px;
        font-size: 12px;
    }
}
