/* style2.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e3f2fd 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
}

.blob1 {
    width: 300px;
    height: 300px;
    background: #ff4081;
    top: 80%;
    left: 5%;
}

.blob2 {
    width: 250px;
    height: 250px;
    background: #ff4081;
    top: 85%;
    left: 15%;
}

.blob3 {
    width: 350px;
    height: 350px;
    background: #2196f3;
    top: 80%;
    right: 5%;
}

header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heart {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 50% 50% 0 0;
    transform: rotate(-45deg);
    position: relative;
}

.heart::before,
.heart::after {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -25px;
    left: 0;
}

.heart::after {
    top: 0;
    left: 25px;
}

.logo-text {
    font-size: 2.5em;
    font-weight: bold;
}

.logo-text .crush {
    color: #ff4081;
}

.logo-text .yum {
    color: #333;
}

nav {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4081;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: #f8f8f8;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 100;
    display: none;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.icon.heart-icon {
    background: #ff4081;
}

.icon.cam-icon {
    background: #2196f3;
}

.hero {
    background: white;
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #ff4081;
}

.hero-content p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.4);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 50%, #2196f3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-inner::before {
    content: "♥";
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
}

.reviews-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto;
}

.review-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.dating {
    background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
}

.review-card.cam {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: bold;
}

.review-header .icon {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
}

.site-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.site-item {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.site-item::after {
    content: 'Click to read review →';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 64, 129, 0.9);
    color: white;
    padding: 5px;
    font-size: 0.8em;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.site-item:hover::after {
    transform: translateY(0);
}

.site-image {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
}

.site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.site-item:hover .site-image img {
    transform: scale(1.05);
}

.site-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.stars {
    color: #ffa726;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.rating-value {
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
    margin-top: 5px;
}

.visits {
    color: #666;
    font-size: 0.85em;
    margin-top: 5px;
}

.view-all-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.view-all-btn.dating {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.view-all-btn.cam {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 0.95em;
}

.footer-section a:hover {
    color: #ff4081;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9em;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom .brand {
    color: #ff4081;
    font-weight: bold;
}

/* Nav Toggle Button - Hidden on Desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .reviews-section {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation Menu */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        border-radius: 0;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    nav.active {
        left: 0;
    }

    nav a {
        font-size: 1.2em;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav a:hover {
        background: #f8f8f8;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 15px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        font-size: 1.2em;
        color: #333;
    }

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 0;
        background: #f8f8f8;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-content a {
        padding: 15px 0 15px 30px;
        border-bottom: 1px solid #e0e0e0;
    }

    /* Adjust logo for mobile */
    .logo {
        margin-right: 40px;
        justify-content: center;
    }

    .logo-text {
        font-size: 2em;
    }

    .heart {
        width: 40px;
        height: 40px;
    }

    .heart::before,
    .heart::after {
        width: 40px;
        height: 40px;
    }

    .site-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .site-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }
    
    
    .site-item {
        padding: 10px;
    }
    
    .site-image {
        height: 100px;
    }
    
    .site-name {
        font-size: 0.9em;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-header {
        font-size: 1.5em;
    }
}