/* Base styles and reset */
:root {
    --primary: #FF3366;
    --primary-light: rgba(255, 51, 102, 0.1);
    --primary-dark: #D61F56;
    --secondary: #FF9500;
    --background: #FFFFFF;
    --dark: #222222;
    --light: #F8F8F8;
    --gray: #777777;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --radius: 10px;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--background);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Header styles */
header {
    background-color: var(--background);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero section */
.hero {
    padding: 100px 0 60px;
    background-color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, var(--primary-light));
    z-index: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4);
    color: white;
}

.cta-button.large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.hero-banner {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Features section */
.features {
    padding: 100px 0;
    background-color: var(--background);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.feature-card svg {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Gallery section */
.gallery {
    padding: 100px 0;
    background-color: var(--light);
}

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

.gallery-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-card h4 {
    padding: 20px;
    text-align: center;
    margin-bottom: 0;
}

.view-button {
    display: block;
    background: var(--primary-light);
    color: var(--primary);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.view-button:hover {
    background: var(--primary);
    color: white;
}

/* Premium section */
.premium {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.premium::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-light);
}

.premium-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.premium-content {
    padding: 40px;
}

.premium-content h3 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary);
}

.premium-features {
    margin-bottom: 30px;
}

.premium-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.premium-features svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.premium-features span {
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-icon {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: white;
    color: var(--primary);
}

.final-cta .cta-button:hover {
    background: var(--light);
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-nav h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive styles */
@media (max-width: 992px) {
    .feature-grid, .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card, .gallery-card, .premium-card, .testimonial {
        padding: 30px 20px;
    }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}
