/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f4ec;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(60, 190, 201, 0.8); /* Transparent background matching theme */
    z-index: 1000;
    padding: 1rem 5%;
    transition: background 0.3s;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s, background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(60, 190, 201, 0.9);
        width: 100%;
        height: calc(100vh - 60px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .menu-icon {
        display: block;
    }

    .nav-links li a {
        font-size: 1.5rem;
        padding: 0.8rem 2rem;
    }
}

/* Dashboard Overview Styles */
.dashboard-overview {
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.overview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    width: calc(25% - 2rem);
}

.overview-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Create Story Section */
.create-story-section {
    padding: 3rem 5%;
    text-align: center;
}

.story-type-selection {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.story-btn {
    background-color: #3cbec9;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.story-btn:hover {
    background-color: #2ca4ad;
    transform: scale(1.05);
}

/* Modal Styling */
.story-customization-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('hero1.jpg') no-repeat center center/cover; /* Replace with the actual image path */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent box */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-cta-btn {
    padding: 1rem 2rem;
    background-color: #3cbec9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contact-cta-btn:hover {
    background-color: #2ca4ad;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .contact-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .contact-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .contact-cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 4rem 5%;
    background-color: #f8f4ec;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    font-size: 2rem;
    color: #3cbec9;
    margin-bottom: 1rem;
}

.form-container p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2ca4ad;
    outline: none;
    box-shadow: 0 0 8px rgba(44, 164, 173, 0.5);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #3cbec9;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #2ca4ad;
    transform: scale(1.05);
}

.form-success {
    color: #2ca4ad;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-container p {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Contact Information Section Styles */
.contact-info-section {
    padding: 4rem 5%;
    background-color: #f8f4ec;
    text-align: center;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.5rem;
    color: #3cbec9;
    margin-bottom: 1rem;
}

.info-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(60, 190, 201, 0.3);
}

.info-box i {
    font-size: 2.5rem;
    color: #3cbec9;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: 1rem;
    color: #777;
}

.info-box a {
    text-decoration: none;
    color: #2ca4ad;
    transition: color 0.3s;
}

.info-box a:hover {
    color: #3cbec9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-details {
        gap: 1.5rem;
    }

    .info-box {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        max-width: 80%;
    }

    .info-container h2 {
        font-size: 2rem;
    }

    .info-container p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info-container h2 {
        font-size: 1.8rem;
    }

    .info-container p {
        font-size: 0.8rem;
    }

    .info-box {
        max-width: 90%;
    }

    .info-box i {
        font-size: 2rem;
    }
}


/* Footer Section Styles */


/* Footer Section Styles */
.footer-section {
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to bottom right, #3cbec9, #2ca4ad);
    color: white;
    text-align: center;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2%;
}

/* Footer Logo */
.footer-logo a {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-logo a:hover {
    color: #f8f4ec;
    transform: scale(1.1);
}

/* Footer Links */
.footer-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-links li a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s, color 0.3s;
}

.footer-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #f8f4ec;
    transform: scale(1.05);
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.5);
}

/* Copyright Text */
.footer-copyright {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo a {
        font-size: 1.5rem;
    }

    .footer-links li a {
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}


