@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&display=swap');



:root {
    --primary:  #a4303f; 
    --secondary: #d25263de; 
    --accent: #873636;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --success: #2ecc71;    
    --background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h16v2h-6v6h6v8H8v-6H2v6H0V0zm4 4h2v2H4V4zm8 8h2v2h-2v-2zm-8 0h2v2H4v-2zm8-8h2v2h-2V4z' fill='%23f3a7b1' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
}

header {
    padding: 2rem;
    text-align: center;    
}

.logo {
    font-family: 'Playfair Display', serif;   
    font-size: 2.5rem;
    font-weight: 700;    
    color: var(--primary);
    margin-bottom: 1rem;
}

.logo img {
    max-width: 350px;
    transition: transform 0.3s ease-in-out;
}
.logo img:hover {
    transform: scale(1.1);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dark);
    opacity: 0.8;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.hero {
    max-width: 800px;
    margin-bottom: 3rem;
}

h1 {
    font-family: "Saira Stencil One", serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

 .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
} 

.countdown div {
    /* background: #a4303f; */
    color: var(--primary);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown span {
    display: block;
    font-size: 0.9rem;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    opacity: 0.8;
} 

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-container {
    max-width: 500px;
    width: 100%;
    margin: 2rem 0;
}

.netlify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
}

.form-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.form-btn:hover {
    opacity: 0.9;
}

.success-message {
    display: none;
    background-color: var(--success);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
}

footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--primary);    
    color: var(--light);
    font-size: x-large;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .services {
        gap: 1rem;
    }
    
    .service-item {
        width: 150px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        width: 70px;
    }
    
    .service-item {
        width: 130px;
    }
    
    .netlify-form {
        padding: 1.5rem;
    }
}