/* Font Face Definitions */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f1ffe9;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.iru-splash-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #f1ffe9;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.iru-splash-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    margin-top: 0;
}

.iru-logo {
    width: 60vw;
    max-width: 340px;
    min-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.iru-title {
    color: #38b449;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.iru-subtitle {
    color: #231942;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: center;
}

.iru-splash-footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10rem 0 6rem 0;
    background: transparent;
    display: flex;
    justify-content: center;
}

.iru-btn {
    display: block;
    width: 90vw;
    max-width: 400px;
    background: #231942;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 18px;
    padding: 1.5rem 0;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(35,25,66,0.08);
    transition: background 0.2s;
    letter-spacing: 0.5px;
}
.iru-btn:hover, .iru-btn:focus {
    background: #38b449;
    color: #fff;
}

@media (max-width: 600px) {
    .iru-logo {
        width: 80vw;
        min-width: 100px;
        max-width: 220px;
    }
    .iru-title {
        font-size: 2rem;
    }
    .iru-subtitle {
        font-size: 1rem;
    }
    .iru-btn {
        font-size: 1.2rem;
        padding: 1.2rem 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
}

/* CTA Section */
.cta {
    background: #333;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Maintenance page styles */
.maintenance-message {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.maintenance-message h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.maintenance-message p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.5;
}

.debug-info {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.debug-info pre {
    font-size: 0.85rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #666;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .maintenance-message h2 {
        font-size: 1.5rem;
    }
    
    .maintenance-message p {
        font-size: 1rem;
    }
    
    .debug-info pre {
        font-size: 0.75rem;
    }
}