/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('https://img.freepik.com/premium-photo/bouquet-pink-roses-envelope-letter-with-heart_75514-1369.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Override body background for colors.html page */
body.colors-page {
    background: url('https://images.stockcake.com/public/8/3/0/830149a1-6b2b-46cc-a47a-2a53b901a91a_large/seashell-coastal-beauty-stockcake.jpg') center/cover no-repeat fixed !important;
}

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

/* Header - Hidden */
header {
    display: none;
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B008B, #C71585, #B22222);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(139, 0, 139, 0.5), 0 0 0 2px rgba(199, 21, 133, 0.3);
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(139, 0, 139, 0.8), 0 0 0 3px rgba(199, 21, 133, 0.5);
    background: linear-gradient(135deg, #800080, #8B008B, #C71585);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.98), rgba(128, 0, 128, 0.95), rgba(75, 0, 130, 0.98));
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -8px 0 25px rgba(139, 0, 139, 0.4);
    border-left: 2px solid rgba(128, 0, 128, 0.6);
}

.nav-menu.active {
    right: 0;
}

.nav-menu h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.nav-menu a:hover {
    background: rgba(139, 0, 139, 0.3);
    color: #FFD700;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.95) 0%, rgba(128, 0, 128, 0.95) 50%, rgba(75, 0, 130, 0.95) 100%);
    backdrop-filter: blur(20px);
    color: white;
    margin-top: 0;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(139, 0, 139, 0.4);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B008B, #C71585);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(139, 0, 139, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 0, 139, 0.6);
    background-position: 100% 100%;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: url('https://www.traveloffpath.com/wp-content/uploads/2023/02/Daytona-beach-florida-aerial-view-with-beach-and-ocean.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(240, 230, 140, 0.9);
    border: 2px solid #FF6347;
    color: #FF6347;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.filter-btn.active,
.filter-btn:hover {
    background: #FF6347;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

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

.gallery-item {
    display: block !important;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.gallery-item.hidden {
    display: block !important;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

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

.placeholder-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.purchase-btn {
    background: #FF6347;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.purchase-btn:hover {
    background: #FF4500;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid #FF6347;
    position: relative;
}

.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6347;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2rem;
    color: #FF6347;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.pricing-card li::before {
    content: "✓";
    color: #FF6347;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: transparent;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.contact p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6347;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background: #c2185b;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.9) 0%, rgba(128, 0, 128, 0.9) 50%, rgba(75, 0, 130, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(139, 0, 139, 0.4);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FF6347;
    font-size: 2.5rem;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #20B2AA;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    font-size: 1rem;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.9) 0%, rgba(128, 0, 128, 0.9) 50%, rgba(75, 0, 130, 0.9) 100%);
    backdrop-filter: blur(20px);
    text-align: center;
    border-radius: 30px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(139, 0, 139, 0.4);
}

.experience h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.experience-card h3 {
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.3rem;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(145deg, rgba(139, 0, 139, 0.9), rgba(128, 0, 128, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(139, 0, 139, 0.3);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FF6347;
    font-size: 2.5rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #20B2AA;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.client {
    font-weight: bold;
    color: #20B2AA;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.95) 0%, rgba(128, 0, 128, 0.9) 50%, rgba(75, 0, 130, 0.95) 100%);
    backdrop-filter: blur(20px);
    text-align: center;
    color: white;
    border-radius: 30px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(139, 0, 139, 0.4);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-button.primary {
    background: white;
    color: #FF6347;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #FF6347;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin-left: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    /* New sections responsive styles */
    .about h2,
    .experience h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

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

/* Hamburger menu animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Packages Page Styles */
.packages-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #00CED1 0%, #FF7F50 50%, #FFD700 100%);
    color: white;
    margin-top: 0;
}

.packages-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.packages-section {
    padding: 80px 0;
    background: white;
}

.packages-section:nth-child(even) {
    background: #f8f9fa;
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.package-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.package-image span {
    position: relative;
    z-index: 1;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: "✓";
    color: #FF6347;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6347;
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF6347, #FF7F50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.3);
}

.package-btn:hover {
    background: linear-gradient(45deg, #FF4500, #FF6347);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.5);
}

/* Luxury Package Styling */
.luxury-card {
    border: 2px solid #FFD700;
    position: relative;
}

.luxury-card::before {
    content: "✨ LUXURY";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.luxury-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
}

.luxury-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00) !important;
}

/* Gift Card Styling */
.gift-card {
    border: 2px solid #FF69B4;
    position: relative;
}

.gift-card::before {
    content: "🎁 GIFT";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF69B4, #FF1493);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.gift-btn {
    background: linear-gradient(45deg, #FF69B4, #FF1493) !important;
}

.gift-btn:hover {
    background: linear-gradient(45deg, #FF1493, #DC143C) !important;
}

/* Seasonal Card Styling */
.seasonal-card {
    border: 2px solid #20B2AA;
    position: relative;
}

.seasonal-card::before {
    content: "🌺 SEASONAL";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #20B2AA, #87CEEB);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.seasonal-btn {
    background: linear-gradient(45deg, #20B2AA, #87CEEB) !important;
}

.seasonal-btn:hover {
    background: linear-gradient(45deg, #17a2b8, #6c757d) !important;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-hero h2 {
        font-size: 2rem;
    }
    
    .packages-section h2 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-hero {
        padding: 100px 0 60px;
    }
    
    .packages-section {
        padding: 60px 0;
    }
    
    .package-image {
        height: 150px;
        font-size: 1.2rem;
    }
}
