/* ==========================================================================
   Gazi Düğün Salonu - Style Sheet (v11) - Royal Navy & Gold
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary-gold: #D4AF37; /* Bright Gold */
    --primary-gold-hover: #B5952F;
    --primary-dark: #ffffff; /* White for headings on dark bg */
    --primary-dark-hover: #e0e0e0;
    --bg-light: #0A1128; /* Royal Navy */
    --bg-alt: #0E1735; /* Slightly lighter navy for contrast sections */
    --bg-dark: #050814; /* Darker Navy for footer */
    --text-dark: #e4e6eb; /* Light text for readability */
    --text-light: #ffffff;
    --text-gray: #a0a5b5; /* Soft gray/blue for secondary text */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 110px 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 25px;
    position: relative;
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn-primary, .btn-gold {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-gold);
    color: #000000; /* Black text on gold button */
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--primary-gold);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: none;
}

/* --- Header / Nav --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 25px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); /* Gold subtle border */
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(5, 8, 20, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 8px;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 8px;
}

header.scrolled .logo-text {
    font-size: 1.8rem;
}

header.scrolled .logo-text span {
    font-size: 0.7rem;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/mini_IMG_7712.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 17, 40, 0.9), rgba(10, 17, 40, 0.6)); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero .subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 45px;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Page Header (For Subpages) --- */
.page-header {
    height: 45vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/mini_IMG_7718.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.page-header h1 {
    font-size: 4rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.breadcrumb {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb a {
    color: var(--primary-gold);
}

.breadcrumb a:hover {
    color: var(--text-light);
}

/* --- About Section --- */
.about {
    background-color: var(--bg-light);
}

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

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-style: italic;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.features {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.feature-item span {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.experience-badge {
    position: absolute;
    bottom: -35px;
    left: -35px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-gold);
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed var(--primary-gold);
    border-radius: 50%;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--primary-gold);
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    color: var(--text-gray);
}

/* --- Services Section --- */
.services {
    background-color: var(--bg-alt); 
}

.services .section-header {
    margin-bottom: 80px;
}

.services .section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 60px 45px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 35px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
    color: var(--primary-dark);
    font-style: italic;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    transition: var(--transition);
}

/* --- Gallery Section --- */
.gallery {
    background-color: var(--bg-light);
}

.gallery .section-header {
    margin-bottom: 70px;
}

.gallery .section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--primary-gold);
    font-size: 3rem;
    transform: scale(0.5);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation-name: zoom;
    animation-duration: 0.4s;
    border-radius: 4px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
    border: 2px solid var(--primary-gold);
}

@keyframes zoom {
    from {transform:scale(0.95); opacity:0} 
    to {transform:scale(1); opacity:1}
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--text-light);
    font-size: 55px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-gold);
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info {
    padding: 80px 60px;
    background-color: var(--bg-alt);
    color: var(--text-light);
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info .section-subtitle {
    color: var(--primary-gold);
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-style: italic;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.info-list .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-list li:hover .icon {
    background-color: var(--primary-gold);
    color: #000;
}

.info-list .details strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-list .details a,
.info-list .details p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-list .details a:hover {
    color: var(--primary-gold);
}

.contact-map {
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%); /* Dark map styling */
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.footer-brand .logo-text {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primary-gold);
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 25px;
    max-width: 350px;
    font-size: 1.1rem;
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-style: italic;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 6px;
    font-size: 1.3rem;
}

.footer-bottom {
    background-color: #02040a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.footer-bottom p {
    color: #555555;
    font-size: 1rem;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-container, .contact-wrapper, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 50px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .experience-badge {
        width: 160px;
        height: 160px;
        padding: 20px;
        left: -15px;
        bottom: -15px;
    }
    
    .experience-badge .years { font-size: 1.8rem; }
    .experience-badge .text { font-size: 0.75rem; }
    
    .contact-map { min-height: 400px; }
    
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(10, 17, 40, 0.98);
        flex-direction: column;
        padding-top: 100px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    
    .about-text h2, .services .section-header h2, .gallery .section-header h2, .contact-info h2, .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-padding { padding: 70px 0; }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
