/*
Theme Name: Kościuszki TEAM
Theme URI: https://kosciuszki-team.pl
Description: Motyw WordPress dla Hodowli Ogierów Kościuszki TEAM - hodowla koni sportowych
Author: Kościuszki TEAM
Version: 1.0
Text Domain: kosciuszki-team
*/

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a3a0a;
    --green-main: #2d5a1d;
    --green-medium: #3d7a2a;
    --green-light: #e8f0e4;
    --brown-dark: #3e2415;
    --brown-main: #6B4226;
    --brown-medium: #8B5E3C;
    --brown-light: #d4b896;
    --cream: #f7f0e6;
    --cream-dark: #e8d5bb;
    --gold: #c9a84c;
    --gold-light: #e0cc8a;
    --white: #ffffff;
    --black: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--green-main);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--brown-main);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--green-dark);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 58, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border-bottom: 2px solid var(--gold);
}

.site-header.scrolled {
    background: rgba(26, 58, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo .logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.site-logo .logo-subtitle {
    font-size: 0.7rem;
    color: var(--cream-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Main navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav a {
    color: var(--cream);
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO SLIDER
   ============================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 10, 0.3) 0%,
        rgba(26, 58, 10, 0.1) 40%,
        rgba(26, 58, 10, 0.5) 80%,
        rgba(26, 58, 10, 0.85) 100%
    );
    z-index: 3;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    letter-spacing: 4px;
}

.hero-content .hero-accent {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--cream-dark);
    max-width: 650px;
    margin: 0 auto 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 14px 45px;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(201, 168, 76, 0.3);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--green-dark);
}

.section-header .section-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   ABOUT / O NAS
   ============================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 5px solid var(--cream-dark);
}

.about-image .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green-main);
    color: var(--gold);
    padding: 20px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--green-main);
    font-size: 0.95rem;
}

.about-feature .icon {
    width: 35px;
    height: 35px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-main);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================
   STALLIONS / OGIERY
   ============================ */
.stallions-section {
    background: var(--cream);
}

.stallions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stallion-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--cream-dark);
}

.stallion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stallion-card .card-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.stallion-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.stallion-card:hover .card-image img {
    transform: scale(1.05);
}

.stallion-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stallion-card .card-body {
    padding: 25px 30px 30px;
}

.stallion-card .card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.stallion-card .card-breed {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.stallion-card .card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.stallion-card .card-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--cream-dark);
}

.stallion-card .stat {
    text-align: center;
    flex: 1;
}

.stallion-card .stat-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--green-main);
    font-weight: 700;
}

.stallion-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.stallion-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--green-main);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--green-main);
    transition: all 0.3s ease;
}

.stallion-btn:hover {
    background: transparent;
    color: var(--green-main);
}

/* ============================
   BREEDING OFFER / STANÓWKA
   ============================ */
.breeding-section {
    background: var(--green-dark);
    color: var(--cream);
    position: relative;
}

.breeding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.png') repeat;
    opacity: 0.05;
}

.breeding-section .section-header h2 {
    color: var(--gold);
}

.breeding-section .section-header p {
    color: var(--cream-dark);
}

.breeding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.breeding-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.breeding-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.breeding-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.breeding-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.breeding-card p {
    color: var(--cream-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.breeding-card ul {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.breeding-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--cream-dark);
    font-size: 0.9rem;
}

.breeding-card ul li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: 700;
}

/* ============================
   VIDEO / YOUTUBE
   ============================ */
.video-section {
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 3px solid var(--cream-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================
   SALES / SPRZEDAŻ
   ============================ */
.sales-section {
    background: var(--cream);
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sale-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

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

.sale-card .sale-image {
    height: 300px;
    overflow: hidden;
}

.sale-card .sale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sale-card:hover .sale-image img {
    transform: scale(1.05);
}

.sale-card .sale-body {
    padding: 25px;
}

.sale-card h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.sale-card .sale-details {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.sale-card .sale-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--green-main);
    font-weight: 700;
}

.sale-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-main);
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ============================
   CONTACT / KONTAKT
   ============================ */
.contact-section {
    background: var(--brown-dark);
    color: var(--cream);
}

.contact-section .section-header h2 {
    color: var(--gold);
}

.contact-section .section-header p {
    color: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item .ci-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--cream-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--cream-dark);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.contact-form .submit-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--black);
    color: var(--cream-dark);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* ============================
   PAGE TEMPLATES
   ============================ */
.page-hero {
    height: 45vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 10, 0.6),
        rgba(26, 58, 10, 0.85)
    );
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-size: 3rem;
    letter-spacing: 3px;
}

.page-content {
    padding: 80px 0;
}

.page-content.white-bg {
    background: var(--white);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-main));
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-banner h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-banner .hero-btn {
    font-size: 0.9rem;
}

/* ============================
   GALLERY GRID
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================
   WORDPRESS SPECIFIC
   ============================ */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* WordPress navigation classes */
.current-menu-item a,
.current_page_item a {
    color: var(--gold) !important;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .header-inner {
        padding: 12px 20px;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .stallions-grid,
    .breeding-grid,
    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--green-dark);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav a::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stallions-grid,
    .breeding-grid,
    .sales-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }

    .about-image .about-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .site-logo .logo-title {
        font-size: 1.2rem;
    }

    .site-logo .logo-subtitle {
        font-size: 0.6rem;
    }

    .contact-form {
        padding: 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
