/* ===================================
   MAREN TATLI & DONDURMA - MAIN STYLES
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-logo {
    max-width: 150px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(243, 156, 18, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(243, 156, 18, 0.5));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(243, 156, 18, 0.1);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Quick Action Buttons */
.quick-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.quick-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 6px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
}

.quick-btn:active {
    transform: translateY(-2px);
}

.quick-btn i {
    font-size: 20px;
}

.web-btn {
    background: linear-gradient(135deg, #EBA338 0%, #f39c12 100%);
}

.menu-btn {
    background: linear-gradient(135deg, #F4C45E 0%, #f39c12 100%);
}

/* Section Title */
.section-title {
    font-size: 22px;
    color: #f39c12;
    border-left: 5px solid #f39c12;
    padding-left: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(243, 156, 18, 0.5), transparent);
}

/* About Section */
.about-wrapper {
    width: 100%;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-section {
    display: flex;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(243, 156, 18, 0.2);
}

.about-img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(243, 156, 18, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    border-color: #f39c12;
}

.about-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

/* Column Layout */
.left-column, .right-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.right-column {
    flex: 1.2;
}

/* Shop Area */
.shop-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.shop-main-title {
    font-size: 22px;
    color: #f39c12;
    border-left: 5px solid #f39c12;
    padding-left: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.shop-img {
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(243, 156, 18, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

.shop-img:hover {
    transform: scale(1.02);
    border-color: #f39c12;
    box-shadow: 0 16px 48px rgba(243, 156, 18, 0.3);
}

/* Info Cards */
.info-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.info-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
}

.info-card h3 {
    margin: 0 0 12px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #f39c12;
}

.info-card h3 i {
    font-size: 22px;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.info-card small {
    color: rgba(243, 156, 18, 0.8);
    margin-top: 8px;
    display: block;
    font-size: 13px;
    font-style: italic;
}

.copy-icon {
    color: #f39c12;
    margin-left: auto;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .copy-icon {
    transform: scale(1.2);
}

#ibanNum {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: bold;
    color: #f39c12;
    font-size: 14px;
}

/* Review Section */
.review-section {
    width: 100%;
    margin: 16px 0;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.google-btn {
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    color: white;
    padding: 22px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.google-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.google-btn:hover::before {
    left: 100%;
}

.google-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.6);
}

.google-btn i {
    font-size: 24px;
}

/* Social Section */
.social-full-width {
    width: 100%;
    margin-top: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.social-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.btn {
    text-decoration: none;
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn i {
    font-size: 20px;
}

/* Social Media Button Colors */
.whatsapp {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.instagram {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.facebook {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #444;
}

.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* Footer */
.footer {
    text-align: center;
    padding: 48px 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    border-top: 1px solid rgba(243, 156, 18, 0.1);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '\2764';
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-out;
}