/* NuupWedding - Modern düğün salonu teması - Sabit çizgiler, zarif tipografi */

:root {
    --color-bg: #f8f6f3;
    --color-dark: #1a1a1a;
    --color-accent: #b8860b;
    --color-accent-light: #d4a84b;
    --color-text: #2c2c2c;
    --color-text-muted: #6b6b6b;
    --color-white: #fff;
    --line-width: 2px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --container: min(1200px, 100vw - 2rem);
    --header-h: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    -webkit-tap-highlight-color: transparent;
    background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
.container--narrow { max-width: 720px; }

/* ----- Header ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
}
.header-line {
    height: var(--line-width);
    background: var(--color-dark);
}
.header-line--top { margin-bottom: 0; }
.header-line--bottom { margin-top: 0; }

/* Üst bar: telefon, adres (sol) | sosyal medya (sağ) */
.top-bar {
    background: var(--color-dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    max-width: var(--container);
    margin: 0 auto;
}
.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.top-bar-item {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.top-bar-item:hover { color: var(--color-accent-light); }
.top-bar-placeholder { opacity: 0.7; font-size: 0.8rem; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.top-bar-social {
    color: rgba(255,255,255,0.85);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.top-bar-social:hover {
    color: var(--color-accent-light);
    background: rgba(255,255,255,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.75rem 1rem;
    min-height: 72px;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}
.logo-accent { color: var(--color-accent); }
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.main-nav a.active { color: var(--color-accent); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: var(--line-width);
    background: var(--color-accent);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
}

/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: var(--header-h);
}
.hero-slider { 
    position: relative; 
    width: 100%;
    min-height: calc(100vh - var(--header-h));
    height: calc(100vh - var(--header-h));
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 1.5rem;
    max-width: 480px;
}
.btn-hero {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: var(--color-accent-light); color: var(--color-white); transform: translateY(-2px); }
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hero-nav:hover { background: rgba(255,255,255,0.35); }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 4;
}
.hero-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-dots .dot.active { background: var(--color-accent); border-color: var(--color-accent); }

/* ----- Sections ----- */
.section { padding: 4rem 0; }
.section--alt { background: var(--color-white); }
.section-line {
    width: 60px;
    height: var(--line-width);
    background: var(--color-accent);
    margin: 0 auto 1.25rem;
}
.section-line--light { background: var(--color-accent-light); }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem;
    color: var(--color-dark);
}
.section-title--light { color: var(--color-white); }
.section-lead {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}
.section-lead--light { color: rgba(255,255,255,0.9); }
.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    font-weight: 500;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--color-dark); color: var(--color-white); }

/* Intro */
.intro .section-lead { margin-bottom: 1.5rem; }
.intro .btn-outline { margin: 0 auto; display: table; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem 1rem;
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border: var(--line-width) solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    color: var(--color-dark);
}
.feature-card p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* Home Gallery (3'lü rastgele görseller) */
.home-gallery {
    background: var(--color-white);
}
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.home-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.home-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.home-gallery-item:hover .home-gallery-link img {
    transform: scale(1.1);
}
.home-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26,26,26,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}
.home-gallery-item:hover .home-gallery-overlay {
    opacity: 1;
}

/* CTA */
.cta {
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}
.cta .btn-hero { margin-top: 0.5rem; }

/* ----- Page head / body ----- */
.page-head { padding-top: 3rem; }

/* Page Hero Banner - Tam genişlik görsel üzerinde başlık */
.page-hero-banner {
    margin-top: var(--header-h);
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
.page-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 4rem 1rem;
    text-align: center;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-white);
    margin: 1rem 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.page-hero-content .section-line {
    background: var(--color-accent-light);
    margin-bottom: 1rem;
}
.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--color-dark);
}
.page-lead {
    text-align: center;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
}
.page-body .prose {
    font-size: 1.05rem;
    line-height: 1.75;
}
.page-body .prose p { margin: 0 0 1rem; }
.page-body .prose h2 { font-family: var(--font-heading); margin: 1.5rem 0 0.5rem; }

/* ----- Gallery ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    margin: 0;
    display: block;
}
.gallery-item--hidden {
    display: none;
}
.gallery-link {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-link:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 1.5rem;
}
.gallery-link:hover .gallery-overlay { opacity: 1; }
.gallery-empty { text-align: center; color: var(--color-text-muted); padding: 3rem; }
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
    line-height: 1;
}
.lightbox-close:hover { background: rgba(0,0,0,0.9); }
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}
.lightbox-nav:hover { background: rgba(0,0,0,0.9); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ----- Contact ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form .form-row {
    margin-bottom: 1.25rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}
.required { color: #c00; }
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 1rem;
}
.contact-item {
    margin: 0.5rem 0;
}
.contact-item a { color: var(--color-dark); }
.contact-item a:hover { color: var(--color-accent); }
.contact-map {
    margin-top: 1.5rem;
    border: var(--line-width) solid #eee;
    overflow: hidden;
}
.contact-map iframe { width: 100%; height: 250px; border: 0; }
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.text-muted { color: var(--color-text-muted); }

/* ----- 404 ----- */
.error-404 { text-align: center; padding: 5rem 0; }
.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-accent);
    line-height: 1;
}
.error-text { margin: 1rem 0 1.5rem; font-size: 1.2rem; }

/* ----- Footer ----- */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.85);
    margin-top: 4rem;
}
.footer-line {
    height: var(--line-width);
    background: var(--color-accent);
    margin-bottom: 0;
}
.footer-line--bottom { margin: 0; }

.footer-main {
    padding: 3rem 0;
}
.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo {
    max-width: 100px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-brand .logo-text {
    font-size: 1.75rem;
    color: #fff;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0 0 1.5rem;
}
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}
.footer-social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    transition: all 0.2s;
    font-size: 1.1rem;
}
.footer-social-icon:hover {
    color: var(--color-accent-light);
    border-color: var(--color-accent-light);
    background: rgba(184,134,11,0.1);
    transform: translateY(-2px);
}
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-menu a:hover {
    color: var(--color-accent-light);
    padding-left: 0.25rem;
}
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.footer-contact-list i {
    color: var(--color-accent-light);
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.footer-contact-list a {
    color: inherit;
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: var(--color-accent-light);
}
.footer-contact-list span {
    line-height: 1.5;
}
.footer-copy {
    background: rgba(0,0,0,0.3);
    padding: 1.25rem 0;
}
.footer-copy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.footer-credits-text {
    color: rgba(255,255,255,0.7);
}
.footer-credits-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.footer-credits-link:hover {
    opacity: 0.8;
}
.footer-credits-logo {
    height: 24px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-credits-link:hover .footer-credits-logo {
    opacity: 1;
}
.footer-credits-fallback {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-decoration: none;
}
.footer-credits-link:hover .footer-credits-fallback {
    color: var(--color-accent-light);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
    .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    :root { --header-h: 112px; }
    .hero {
        margin-top: var(--header-h);
        min-height: calc(100vh - var(--header-h));
    }
    .hero-slider {
        min-height: calc(100vh - var(--header-h));
        height: calc(100vh - var(--header-h));
    }
    .top-bar {
        font-size: 0.8rem;
    }
    .top-bar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    .top-bar-left {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        min-width: 0;
    }
    .top-bar-item {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .top-bar-right {
        flex-shrink: 0;
        justify-content: flex-end;
        gap: 0.5rem;
    }
    .top-bar-social {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .header-inner {
        justify-content: flex-end;
        position: relative;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    .nav-toggle {
        position: relative;
        z-index: 2;
    }
    .main-nav { display: none; }
    .main-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-bg); padding: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .main-nav.is-open ul { flex-direction: column; gap: 0.5rem; }
    .nav-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
    .hero-nav { width: 40px; height: 40px; font-size: 0.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .home-gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col--brand { grid-column: 1; }
    .footer-logo {
        max-width: 160px;
    }
    .footer-social-icons { justify-content: flex-start; }
    .footer-copy-content { flex-direction: column; text-align: center; }
    .footer-credits { justify-content: center; }
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    :root { --header-h: 100px; }
    .hero {
        margin-top: var(--header-h);
        min-height: calc(100vh - var(--header-h));
    }
    .hero-slider {
        min-height: calc(100vh - var(--header-h));
        height: calc(100vh - var(--header-h));
    }
    .top-bar {
        font-size: 0.75rem;
    }
    .top-bar-inner {
        padding: 0.6rem 0.75rem;
        gap: 0.75rem;
    }
    .top-bar-left {
        gap: 0.35rem;
    }
    .top-bar-item {
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    .top-bar-right {
        gap: 0.4rem;
    }
    .top-bar-item i {
        font-size: 0.85rem;
    }
    .top-bar-social {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .logo-img {
        height: 50px;
        max-width: 160px;
    }
    .footer-logo {
        max-width: 140px;
    }
    .section { padding: 3rem 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .page-hero-banner { min-height: 350px; }
    .page-hero-content { min-height: 350px; padding: 3rem 1rem; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 1rem; }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
