
/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
}

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.media-sales-btn {
    background-color: #007bff;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.media-sales-btn:hover {
    background-color: #0056b3;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff); /* Light gradient */
    text-align: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #333;
}

.hero-content h1 span {
    color: #007bff;
    display: block;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 10px;
}

.primary-btn {
    background-color: #007bff;
    color: #fff;
}

.primary-btn:hover {
    background-color: #0056b3;
}

.secondary-btn {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.secondary-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.hero-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.about-section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
}

/* Instagram Video Section */
.instagram-video-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.instagram-video-section h3 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.video-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.video-intro, .video-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background-color: #e0f7fa;
    text-align: center;
}

.gallery-section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

.gallery-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.services-section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

.services-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.service-card h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 2em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #f0f8ff;
    text-align: center;
}

.contact-section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

.contact-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-container form input,
.contact-container form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-container form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-container form button:hover {
    background-color: #0056b3;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links img {
    height: 30px;
    margin-right: 15px;
}

.media-sales-box {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.media-sales-box h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007bff;
}

.media-sales-box .btn {
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social img {
    height: 30px;
    margin: 20px 15px;
    filter: brightness(0) invert(1);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9em;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 80%;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-container form,
    .contact-info {
        flex: none;
        width: 100%;
    }
}


