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

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


/* Hero Section Styles */
.sbr-hero {
background: url('/img/homepage-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
text-align: center;
position: relative;
overflow: hidden;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
padding: 10rem 0 6rem;
}


/* Hero Overlay */
.sbr-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1;
}


/* Hero Content */
.sbr-hero-content {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 2;
padding: 0 2rem;
}

.sbr-hero h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.sbr-hero p {
font-size: 1.25rem;
margin-bottom: 2.5rem;
opacity: 0.95;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}


/* Button Styles */
.sbr-btn {
display: inline-block;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.sbr-btn-primary {
background: #6acc5b;
color: white;
box-shadow: 0 4px 15px rgba(106, 204, 91, 0.3);
}

.sbr-btn-primary:hover {
background: #52a842;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(106, 204, 91, 0.4);
}


/* Hero Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
.sbr-hero {
    min-height: 75vh;
    padding: 9rem 0 5rem;
}

.sbr-hero-content {
    max-width: 850px;
    padding: 0 1.5rem;
}

.sbr-hero h1 {
    font-size: 2.5rem;
}

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

.sbr-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}
}

/* Mobile Styles */
@media (max-width: 768px) {
.sbr-hero {
    min-height: 80vh;
    padding: 8rem 0 3rem;
}

.sbr-hero-content {
    padding: 0 1rem;
}

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

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

.sbr-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}
}