@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    /* Logo renklerine göre renk paleti */
    --deep-purple: #6B4C93;
    --medium-purple: #8B6FA8;
    --light-purple: #B8A9D4;
    --very-light-purple: #E8E0F0;
    --peach: #F5D5C8;
    --dark-blue: #4A5C7A;
    --dark-gray: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #FAF9F7;
    --dark-overlay: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(107, 76, 147, 0.7) 0%, rgba(107, 76, 147, 0.3) 50%, rgba(107, 76, 147, 0) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--peach);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--peach);
    transform: scale(1.1);
}

/* Hero Section - Full Screen with Background */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('logo.jpg');
    background-size: 50%;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 60px 60px;
    display: flex;
    justify-content: flex-end;
}

.hero-text {
    max-width: 600px;
    color: var(--dark-gray);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.4s forwards;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 550px;
}

.hero-description p {
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

.hero-description p:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-description p:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-description p:nth-child(3) {
    animation-delay: 1s;
}

.hero-description .highlight-text {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--deep-purple);
    padding-left: 1rem;
    border-left: 3px solid var(--medium-purple);
    margin: 1.5rem 0;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in-section.animate-in {
    opacity: 1;
}

/* Intro Section */
.intro {
    padding: 80px 0 40px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

/* Topics Section */
.topics {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--very-light-purple) 100%);
    position: relative;
    z-index: 10;
}

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

.topic-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(107, 76, 147, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--medium-purple);
    position: relative;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 76, 147, 0.15);
}

.topic-icon {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 25px;
}

.topic-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-list li {
    padding: 14px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.8;
    border-bottom: 1px solid var(--very-light-purple);
    font-size: 0.95rem;
}

.topic-list li:last-child {
    border-bottom: none;
}

.topic-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--medium-purple);
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: bold;
}

/* Abonelik Floating Widget */
.abonelik-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1500;
}

.abonelik-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(107, 76, 147, 0.4);
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.abonelik-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 76, 147, 0.5);
}

.abonelik-toggle span:first-child {
    font-size: 1.3rem;
}

.abonelik-toggle-text {
    display: inline-block;
}

.abonelik-panel {
    position: fixed;
    left: -400px;
    top: 0;
    width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1600;
    overflow-y: auto;
}

.abonelik-panel.active {
    left: 0;
}

.abonelik-panel-header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.abonelik-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.abonelik-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.abonelik-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.abonelik-panel-content {
    padding: 30px;
}

.abonelik-warning {
    font-size: 1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 500;
}

.abonelik-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.abonelik-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--very-light-purple);
    border-radius: 50px;
    background: var(--white);
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.abonelik-input:focus {
    outline: none;
    border-color: var(--medium-purple);
    box-shadow: 0 0 0 3px rgba(107, 76, 147, 0.1);
}

.abonelik-input::placeholder {
    color: #999;
}

.abonelik-button {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    letter-spacing: 1px;
}

.abonelik-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
    background: linear-gradient(135deg, #E0B584 0%, #9B7F57 100%);
}

.abonelik-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-top: 15px;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--very-light-purple) 0%, var(--white) 100%);
    position: relative;
    z-index: 10;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 76, 147, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--medium-purple);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 76, 147, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--very-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-purple);
    font-size: 3rem;
}

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

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-purple);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--very-light-purple);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-purple);
}

.product-button {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 147, 0.4);
    background: linear-gradient(135deg, var(--medium-purple) 0%, var(--deep-purple) 100%);
}

.products-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-gray);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--very-light-purple);
    border-top-color: var(--medium-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-gray);
}

.products-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.products-empty p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact-section-page {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-purple);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--very-light-purple);
    border-radius: 8px;
    text-decoration: none;
    color: var(--deep-purple);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    background: var(--white);
    border-color: var(--medium-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 76, 147, 0.2);
}

.contact-method svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
    padding: 60px 0;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-name {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-social {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 120px 40px 60px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .header-right {
        gap: 15px;
    }

    .logo {
        height: 40px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .slide-menu-content {
        top: 70px;
        padding: 25px 20px;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-column-title {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .menu-column-list a {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .contact-text,
    .social-text {
        font-size: 0.9rem;
    }

    .contact-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .menu-social-icon {
        width: 32px;
        height: 32px;
    }

    .menu-column-title {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .menu-column-list a {
        font-size: 1rem;
    }

    .logo-menu {
        height: 40px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 100px 30px 50px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-description .highlight-text {
        font-size: 1.05rem;
        padding-left: 0.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .topic-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 90px 20px 40px;
    }

    .intro {
        padding: 60px 0 30px;
    }

    .topics {
        padding: 40px 0 60px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 25px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .product-button {
        width: 100%;
        text-align: center;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 2.5rem;
    }

    .lightbox-content {
        max-width: 95%;
        padding: 20px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 0.95rem;
        padding: 8px 15px;
    }

    .menu-social-icons {
        justify-content: center;
    }

    .abonelik-widget {
        bottom: 20px;
        left: 20px;
    }

    .abonelik-toggle {
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .abonelik-toggle-text {
        display: none;
    }

    .abonelik-panel {
        width: 100%;
        left: -100%;
    }

    .abonelik-panel.active {
        left: 0;
    }

    .abonelik-panel-header {
        padding: 20px;
    }

    .abonelik-panel-title {
        font-size: 1.4rem;
    }

    .abonelik-panel-content {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--light-purple);
    color: var(--dark-gray);
}

/* Photo Gallery Lightbox */
.photo-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.photo-lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 80px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
    line-height: 1;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.product-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-image:hover img {
    opacity: 0.9;
}

.product-image img {
    transition: opacity 0.3s ease;
}
