/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo container styles */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo {
    height: 300px;
    width: auto;
    border-radius: 5px;
}

/* Hero section with fullscreen background */
.hero-section {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Contact section */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }

    .logo {
        height: 220px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 10px;
        left: 10px;
    }

    .logo {
        height: 180px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}
