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

/* Global Styles */
:root {
    --primary-color: #ff69b4;
    --secondary-color: #4a4a4a;
    --accent-color: #ff1493;
    --bg-color: #fff;
    --text-color: #333;
    --gradient: linear-gradient(135deg, #ff69b4, #ff1493);
    --section-padding: 100px 0;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

section {
    padding: var(--section-padding);
    position: relative;
    margin-top: 80px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding-left: 2rem;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

nav {
    padding-right: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger menü aktif durumu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Section Styles */
h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

/* Hero Section */
#home {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--bg-color);
    padding: 0 20px;
    margin-top: 0;
    padding-top: 100px;
}

.hero {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--gradient);
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--bg-color);
    border: 2px solid var(--bg-color);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.features {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* About Section */
#about {
    background-color: var(--bg-color);
    padding: 100px 20px;
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 20px;
}

.service-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    padding: 0 2rem;
    margin: 1.5rem 0;
}

.service-features li {
    margin: 0.8rem 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.service-button:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* Campaigns Section */
.gradient-bg {
    background: linear-gradient(135deg, #fff5f8, #ffe4ef);
}

.campaign-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.campaign-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.campaign-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.campaign-features {
    list-style: none;
    margin: 1.5rem 0;
}

.campaign-features li {
    margin: 0.5rem 0;
}

.campaign-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.campaign-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.campaign-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* Social Media Section */
.social-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-icon.instagram:hover {
    color: #E1306C;
}

.social-icon.facebook:hover {
    color: #1877F2;
}

.social-icon.twitter:hover {
    color: #1DA1F2;
}

.social-icon.youtube:hover {
    color: #FF0000;
}

.social-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.social-gallery img:hover {
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    background-color: var(--bg-color);
    padding: 80px 0;
}

#contact h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Styles */
footer {
    background: linear-gradient(to right, #2c2c2c, #3a3a3a);
    color: #fff;
    padding: 4rem 0 calc(4rem + 70px);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section.brand p {
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-section .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.links ul li a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section.links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section.links ul li a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-section.services ul li {
    color: #f5f5f5;
}

.footer-section.services ul li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-section.contact ul li {
    display: flex;
    gap: 15px;
    color: #f5f5f5;
    margin-bottom: 1.2rem;
}

.footer-section.contact ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-section.contact ul li span {
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

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

.footer-bottom p {
    color: #f5f5f5;
    margin: 0;
    font-size: 0.9rem;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.8rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 10px;
}

.bottom-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.bottom-nav-item.whatsapp i {
    color: #25D366;
}

.bottom-nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(255,105,180,0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .logo {
        padding-left: 1rem;
        z-index: 1002;
    }

    .logo img {
        height: 60px;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        transition: 0.3s;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }

    section {
        margin-top: 60px;
        padding: 60px 0;
    }

    #home {
        margin-top: 0;
        padding-top: 80px;
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    .features {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 15px;
    }

    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 15px;
    }

    .service-card {
        margin: 0;
    }

    .service-image {
        height: 200px;
    }

    .campaign-card {
        margin: 0 15px;
        padding: 1.5rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .social-gallery {
        padding: 0 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .social-gallery img {
        height: 150px;
    }

    .contact-info {
        padding: 0 15px;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .contact-text h3 {
        font-size: 1.1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 15px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section .social-links {
        justify-content: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .bottom-nav {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .bottom-nav-item {
        font-size: 0.7rem;
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

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

    .hero p {
        font-size: 0.9rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .feature-item i {
        font-size: 1.8rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .service-image {
        height: 180px;
    }

    .campaign-card {
        padding: 1rem;
    }

    .social-gallery {
        grid-template-columns: 1fr;
    }

    .social-gallery img {
        height: 200px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .contact-text h3 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .bottom-nav-item span {
        font-size: 0.65rem;
    }

    .bottom-nav-item i {
        font-size: 1.2rem;
    }
} 