/* Home Page Specific Styles */

/* Hero Section */
.hero-image-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-20%);
}

/* Hero Text Overlay */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 30px 40px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 80px 0;
    background-color: #ffffff;
}

.welcome-section h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--accent-blue, #4A90E2);
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.1);
}

.subtitle {
    font-size: 22px;
    font-weight: 400;
    color: var(--accent-blue, #4A90E2);
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.9;
}

.welcome-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary, #555);
    max-width: 900px;
    margin: 0 auto 40px;
}

.welcome-text p {
    margin-bottom: 25px;
}

/* Contact Information */
.info-section {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.info-section a {
    color: #0066cc;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* Address Highlight */
.address-highlight {
    background: linear-gradient(135deg, var(--accent-blue-light, #E8F3FF) 0%, #ffffff 100%);
    border: 3px solid var(--accent-blue, #4A90E2);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.25);
}

.address-badge {
    background: var(--accent-blue, #4A90E2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
}

.address-content {
    text-align: center;
}

.address-name {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--accent-blue, #4A90E2) !important;
    margin-bottom: 12px !important;
}

.address-street {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.address-city {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #555 !important;
    margin-bottom: 8px !important;
}

.address-country {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #666 !important;
    margin-bottom: 0 !important;
}

/* Map Container */
.map-container {
    text-align: center;
    margin: 35px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2);
    border: 3px solid var(--accent-blue, #4A90E2);
    background: var(--accent-blue-light, #E8F3FF);
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
    border-radius: 10px;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design for Home */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-overlay {
        padding: 20px 25px;
    }
    
    .welcome-section h1 {
        font-size: 28px;
    }
    
    .welcome-text {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .info-section {
        padding: 25px;
        margin: 0 10px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-overlay {
        padding: 15px 20px;
    }
    
    .welcome-section h1 {
        font-size: 24px;
    }
    
    .info-section {
        padding: 20px;
    }
}