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

:root {
    --primary: #d4a574;
    --secondary: #f5f5f0;
    --dark: #2c2c2c;
    --light: #ffffff;
    --text: #4a4a4a;
    --border: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s;
}

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

.cta-btn {
    background: var(--primary);
    color: var(--light) !important;
    padding: 12px 30px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
    background-image: url('../img/gelinlik-58.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: 64px;
    color: var(--light);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--light);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle; /* Added for consistency */
}

.btn.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.hero .btn-secondary {
    color: var(--light);
    border-color: var(--light);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--light);
}

.hero .btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.appointment .btn-secondary {
    color: var(--light);
    border-color: var(--light);
}

.appointment .btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

/* Section Styling */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text);
}

/* Collections */
.collections {
    background: var(--light);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card {
    background: var(--secondary);
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-image {
    height: 400px;
    background: url('../img/gelinlik-1.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.collection-image.bohem {
    background-image: url('../img/gelinlik-2.jpeg');
}

.collection-image.modern {
    background-image: url('../img/gelinlik-3.jpeg');
}

.collection-image.klasik {
    background-image: url('../img/gelinlik-4.jpeg');
}

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.collection-info p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.collection-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.collection-link:hover {
    color: #c49563;
}

/* About */
.about {
    background: var(--secondary);
}

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

.about-image {
    height: 500px;
    background: url('../img/gelinlik-5.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-intro {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature p {
    font-size: 15px;
    color: var(--text);
}

/* Process */
.process {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    font-size: 48px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0.3;
}

.step h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.step p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

/* Real Brides */
.real-brides {
    background: var(--secondary);
}

.brides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.brides-grid .bride-card:nth-child(1) .bride-image {
    background-image: url('../img/gelinlik-6.jpeg');
}
.brides-grid .bride-card:nth-child(2) .bride-image {
    background-image: url('../img/gelinlik-7.jpeg');
}
.brides-grid .bride-card:nth-child(3) .bride-image {
    background-image: url('../img/gelinlik-8.jpeg');
}

.bride-card {
    background: var(--light);
    overflow: hidden;
}

.bride-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.bride-quote {
    padding: 30px;
    text-align: center;
}

.bride-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.bride-quote span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* Blog */
.blog {
    background: var(--light);
}

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

.blog-grid .blog-card:nth-child(1) .blog-image {
    background-image: url('../img/gelinlik-9.jpeg');
}
.blog-grid .blog-card:nth-child(2) .blog-image {
    background-image: url('../img/gelinlik-10.jpeg');
}
.blog-grid .blog-card:nth-child(3) .blog-image {
    background-image: url('../img/gelinlik-11.jpeg');
}

.blog-card {
    background: var(--secondary);
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #c49563;
}

/* Appointment */
.appointment {
    background: var(--dark);
    color: var(--light);
}

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

.appointment-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--light);
}

.appointment-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 15px;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
        resize: vertical;
    }

    .form-group-row {
        display: flex;
        gap: 20px;
    }

    .form-group-row .form-group {
        flex: 1;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
.appointment-form button {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.appointment-form button:hover {
    background: #c49563;
    transform: translateY(-2px);
}

/* Instagram Feed */
.instagram-feed {
    padding: 100px 0;
    background: var(--light);
}

.instagram-feed .section-header a {
    text-decoration: none;
    color: var(--primary);
    font-size: 20px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.instagram-post:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact */
.contact {
    background: var(--secondary);
}

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

.contact-info h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 40px;
    font-weight: 300;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Mobil cihazlar için sarmayı etkinleştir */
        gap: 20px; /* Mobil cihazlarda boşluk bırak */
    }

    .footer-bottom-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .footer-bottom-left span {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    .footer-bottom-logo {
        height: 30px;
        opacity: 0.7;
    }

    .footer-bottom-akm-logo {
        height: 35px;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    .footer-bottom-akm-logo:hover {
        opacity: 1;
    }

    .footer-bottom-right a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .designed-by-text {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        white-space: nowrap;
    }
.hamburger-menu {
        display: none; /* Hidden by default on desktop */
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }

    .hamburger-bar {
        width: 100%;
        height: 3px;
        background-color: var(--dark);
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 85px; /* Height of the header */
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--light);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        gap: 0;
    }

    .nav-menu.nav-menu--active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .nav-menu li a.cta-btn {
        margin: 10px auto;
        width: fit-content;
    }

    .hamburger-menu {
        display: flex; /* Show on mobile */
    }

    .hamburger-menu.is-active .hamburger-bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.is-active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.is-active .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .collection-grid,
    .brides-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .appointment-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body, html {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important; /* Ensure full width */
        overflow-x: hidden !important; /* Force no horizontal scroll */
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important; /* Ensure section takes full width */
        overflow-x: hidden !important; /* Force no horizontal scroll */
    }
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-content h2,
    .appointment-content h2,
    .contact-info h2 {
        font-size: 28px;
    }
}

/* Style for favorites count in navigation */
.favorites-count {
    font-size: 0.8em;
    vertical-align: super;
    color: var(--primary);
    font-weight: bold;
    margin-left: 2px;
}