/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 20px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #FF6B6B;
}

/* Main Content Styles */
main {
    padding-top: 80px;
}

h1, h2 {
    color: #333;
}

/* Hero Section */
.hero {
    background-color: #FF6B6B;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

.cta-button {
    display: inline-block;
    background-color: #4ECDC4;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #45b7ae;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 4rem;
    background-color: white;
    padding: 4rem 0;
}

.feature {
    flex-basis: 30%;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* About Page */
.about {
    text-align: center;
    padding: 4rem 0;
}

.about h1 {
    color: #FF6B6B;
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 1rem auto;
}

/* Gallery Page */
.gallery {
    padding: 4rem 0;
}

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

.gallery-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Pricing Page */
.pricing {
    padding: 4rem 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-item {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

.pricing-item h2 {
    color: #FF6B6B;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #4ECDC4;
    margin: 1rem 0;
}

.pricing-item ul {
    list-style-type: none;
    padding: 0;
}

.pricing-item li {
    margin: 0.5rem 0;
}

/* FAQ Page */
.faq {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq h1 {
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 2rem;
}

.question {
    font-weight: bold;
    color: #4ECDC4;
    margin-top: 1.5rem;
}

.answer {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact {
    padding: 4rem 0;
}

iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        padding: 15px 0;
        display: block;
    }

    .features, .pricing-grid {
        flex-direction: column;
    }

    .feature, .pricing-item {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}