/*
Theme Name: XBHR Conference Theme
Description: A professional conference theme based on XBHR Copenhagen 2026 design
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Hero Section - Save the Date */
.hero-section {
/*	  linear-gradient(180deg, rgba(15, 30, 60, 0.65), rgba(15, 30, 60, 0.65)), url("copenhagen.jpg"); */

	  background-image: url("copenhagen.jpg");
	  background-repeat: no-repeat;
	  background-size: cover;
    color: white; 
    padding: 4rem 0;
    text-align: center;
}

.save-date {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #4a90e2;
}

.event-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.event-date {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background-color: #1a365d;
    color: white;
}

.section-light {
    background-color: white;
    color: #333;
}

/* Navigation Section */
.navigation-section {
    background-color: #2d5a87;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.nav-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.nav-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Hotel Information */
.hotel-section {
    background-color: white;
    padding: 3rem 0;
}

.hotel-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 1rem;
}

.price-list {
    list-style: none;
    margin: 1rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.btn:hover {
    background-color: #357abd;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
}

/* About Section */
.about-section {
    background-color: #1a365d;
    color: white;
    padding: 3rem 0;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4a90e2;
}

/* Footer */
.site-footer {
    background-color: #1a365d;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-info {
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-title {
        font-size: 2.5rem;
    }

    .event-date {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }
}

