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

body {
    font-family: "owners-wide", sans-serif;
    font-weight: 700;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 20px;
}

/* Tagline */
.tagline {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.tagline a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.tagline a:hover {
    color: #139f49;
}


/* Logo Container */
.logo-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Contact Info */
.contact-info {
    margin-top: 4rem;
}

.contact-info p {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.address {
    font-size: 2rem !important;
}

.phone {
    font-size: 1.8rem !important;
}

.email {
    font-size: 1.6rem !important;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .tagline {
        font-size: 2.5rem;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .contact-info p {
        font-size: 1.5rem;
    }
    
    .address {
        font-size: 1.7rem !important;
    }
    
    .phone {
        font-size: 1.5rem !important;
    }
    
    .email {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .logo-container {
        margin: 2rem 0;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .contact-info p {
        font-size: 1.2rem;
    }
    
    .address {
        font-size: 1.4rem !important;
    }
    
    .phone {
        font-size: 1.2rem !important;
    }
    
    .email {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .logo-container {
        margin: 1.5rem 0;
    }
    
    .contact-info {
        margin-top: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .address {
        font-size: 1.1rem !important;
    }
    
    .phone {
        font-size: 1rem !important;
    }
    
    .email {
        font-size: 0.9rem !important;
    }
}
