
:root {
    --primary-color: #0b8a36;
    --primary-glow: rgba(11, 138, 54, 0.7);
    --secondary-color: #ffffff;
    --dark-color: #0a0a0a;
    --gray-color: #f0f2f5;
    --text-color: #1f1f1f;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fcfcfc;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(11, 138, 54, 0.05) 0px,
        rgba(11, 138, 54, 0.05) 120px,
        rgba(255, 255, 255, 0.05) 120px,
        rgba(255, 255, 255, 0.05) 240px
    );
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}





.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* --- Social Icons --- */
.social-link-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-decoration: none;
}

.social-link-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Global Buttons --- */
.btn, .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), #14a245);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 138, 54, 0.3);
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn::before, .btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover, .btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(11, 138, 54, 0.4);
    background: linear-gradient(135deg, #14a245, var(--primary-color));
}

.btn:hover::before, .btn-hero:hover::before {
    left: 100%;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 1rem;
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.75rem;
}

.btn i, .btn-hero i {
    transition: var(--transition);
}

.btn:hover i, .btn-hero:hover i {
    transform: translateX(5px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Premium Navbar & Navigation */
.main-header {
    background: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100%;
}

.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

.dropdown li a {
    padding: 10px 25px;
    font-size: 0.8rem;
    color: #555;
    text-transform: none;
    font-weight: 600;
}

/* --- Global Page Header --- */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200px;
    background: white;
    border-radius: 50%;
    opacity: 0.05;
}

@media (max-width: 768px) {
    .page-header { padding: 60px 0; margin-bottom: 30px; }
    .page-header h1 { font-size: 2rem; }
}

.main-content {
    min-height: 600px;
    padding-bottom: 80px;
}

section {
    padding: 60px 0;
}

.dropdown li a:hover {
    background: var(--gray-color);
    color: var(--primary-color);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-login-btn {
    color: #888;
    font-size: 1.2rem;
    transition: var(--transition);
}

.admin-login-btn:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-sidebar {
    font-size: 2.5rem;
    cursor: pointer;
    color: #888;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(5px);
}
.sidebar-overlay.active {
    display: block;
}

/* --- Hero Boxed Layout --- */
.hero-boxed {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(11, 138, 54, 0.3);
    min-height: 550px;
    box-shadow: 0 0 50px rgba(11, 138, 54, 0.15);
}

.hero-boxed::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(11, 138, 54, 0.1), transparent);
    transform: rotate(35deg);
    pointer-events: none;
}


.hero-deco-left {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.hero-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
    text-align: left !important;
}

.hero-content h1, .hero-content h2 {
    color: white;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    justify-content: flex-start !important;
}

.neon-accent-line {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 4px;
    height: 80px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.neon-accent-line.secondary {
    left: 60px;
    height: 40px;
    opacity: 0.5;
}

/* --- News Components --- */
.section-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.section-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.section-dots span:first-child {
    background: var(--primary-color);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-date {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
}

/* --- Academy Components --- */
.academy-container {
    background: #f0f0f0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.academy-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.academy-content h2 span {
    color: var(--primary-color);
}

.academy-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.academy-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
}

.star-img-wrapper {
    flex: 1;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.star-img-wrapper.top { transform: translateY(-20px); }
.star-img-wrapper.bottom { transform: translateY(20px); }

/* --- Football Grid --- */
.football-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    color: var(--primary-color);
}

.arrow-btn:hover {
    background: var(--primary-color);
    color: white;
}

.players-row {
    background: white;
    border: 2px solid rgba(11, 138, 54, 0.1);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-slider {
    width: 100%;
    display: flex;
    justify-content: center;
}

.marquee-content-players {
    display: flex;
    width: max-content;
    animation: playerSlide 30s linear infinite;
    gap: 30px;
    align-items: center;
}

.marquee-content-players:hover {
    animation-play-state: paused;
}

.player-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.player-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 0 20px rgba(11, 138, 54, 0.3);
}

.player-card h4 {
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.player-card span {
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes playerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Match Score List Fixes */
.score-list {
    background: white;
    border: 2px solid rgba(11, 138, 54, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.score-item .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #333;
}

.score-item .team img { height: 30px; }
.score-item .team.enemy img { filter: grayscale(1); }
.score-item .score { font-weight: 900; font-size: 1.5rem; color: var(--primary-color); }

/* --- Home Sponsor Slider (Marquee) --- */
.home-sponsors-slider {
    padding: 30px 0;
    background: #fcfcfc;
    border-top: 1px solid #eee; /* Slider ile ayırmak için üst çizgi eklendi */
    border-bottom: 1px solid #eee;
    margin-top: 40px; 
    margin-bottom: 40px;
    overflow: hidden;
}

.sponsors-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 65px;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.marquee-item img:hover {
    transform: scale(1.08);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-item { padding: 0 20px; }
    .marquee-item img { height: 45px; }
}

/* --- Mobile Specific Overrides --- */
@media (max-width: 992px) {
    .hero-boxed { min-height: auto; padding: 60px 20px; flex-direction: column; text-align: center; }
    .hero-bg-img { position: relative; width: 100%; height: auto; order: 2; margin-top: 30px; }
    .hero-content { padding: 0; text-align: center !important; order: 1; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { justify-content: center !important; }
    .neon-accent-line { display: none; }
    
    .academy-container { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
    .star-img-wrapper { transform: none !important; height: 300px; }
    
    .football-grid { grid-template-columns: 1fr; }
    .players-row { flex-direction: column; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
}

/* --- Footer Styles --- */
.footer-top {
    background: white;
    padding: 60px 0;
    border-top: 5px solid var(--primary-color);
    border-bottom: 1px solid #eee;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: auto;
    max-height: 100px;
}

.footer-links-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links-grid a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links-grid a:hover {
    color: var(--primary-color);
}

.footer-bottom-bar {
    background: var(--primary-color);
    padding: 50px 0;
    color: white;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-info-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-items span {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-col { text-align: center; }
.info-items a, .address-col a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.info-items a:hover, .address-col a:hover {
    opacity: 0.8;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
}

.social-links a { color: white; transition: var(--transition); }
.social-links a:hover { transform: translateY(-3px); opacity: 0.8; }

.address-col { text-align: right; }
.address-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: right;
    color: white;
}

.address-col p i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-top-wrapper { justify-content: center; text-align: center; }
    .footer-links-grid { justify-content: center; gap: 20px; }
    .footer-info-grid { grid-template-columns: 1fr; text-align: center; }
    .address-col { text-align: center; }
    .address-col p { justify-content: center; }
}

/* --- News Section --- */
.latest-news { padding: 80px 0; }

.section-title-centered { text-align: center; margin-bottom: 50px; }
.section-title-centered h2 { font-size: 2.2rem; font-weight: 900; color: #111; position: relative; }
.section-dots { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
.section-dots span { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.news-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-info h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.news-date, .news-info .btn, .news-info a.btn {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: auto;
}

/* Management Staff */
.management-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.management-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.management-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
}

.management-card p {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .management-img-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .news-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

@media (max-width: 576px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* Global Responsive Fixes */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
}

/* --- Academy Styling --- */
.academy-intro { padding: 80px 0; }
.academy-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.academy-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--dark-color); line-height: 1.2; }
.academy-content h2 span { color: var(--primary-color); }
.academy-content p { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.8; }
.academy-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-item h3, .stat-item h4 { color: var(--primary-color); font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.stat-item span, .stat-item p { font-size: 0.85rem; font-weight: 700; color: #555; text-transform: uppercase; margin: 0; }

.academy-images { position: relative; height: 500px; width: 100%; }
.star-img-wrapper { position: absolute; width: 75%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transition: 0.3s; }
.star-img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.star-img-wrapper.top { top: 0; right: 0; z-index: 2; }
.star-img-wrapper.bottom { bottom: 0; left: 0; z-index: 1; }

@media (max-width: 992px) {
    .academy-container { grid-template-columns: 1fr; text-align: center; }
    .academy-images { height: auto; display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    .star-img-wrapper { position: relative; width: 100%; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; height: 300px; transform: none !important; }
    .academy-stats { justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 30px; }
    .stat-item { flex: 0 0 140px; }
    .stat-item h3, .stat-item h4 { font-size: 2rem !important; }
    .football-results .container > div { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-boxed { min-height: 400px; padding: 40px 20px; }
    .hero-content h1 { font-size: 2.2rem; }
}

@media (min-width: 992px) {
    .hero-boxed { height: 550px !important; padding: 0 80px; }
    .hero-content h1 { font-size: 4.5rem !important; }
}
