
/* Body Pattern 13 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */

#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    transition: top 0.3s ease-in-out;
    z-index: 1000;
}

nav {
    background-color: #590D82;
    padding: 1.2rem;
    box-shadow: 0 3px 8px rgba(89, 13, 130, 0.2);
    border-bottom: 3px solid #FF80FF;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav li {
    padding: 0.5rem;
}

nav a {
    text-decoration: none;
    color: #F4C2F4;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.6rem 0;
    position: relative;
    transition: all 0.3s ease;
}

nav a::before, nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FF80FF;
    transition: width 0.3s ease;
}

nav a::before {
    left: 50%;
    top: 0;
}

nav a::after {
    right: 50%;
    bottom: 0;
}

nav a:hover::before, nav a:hover::after {
    width: 50%;
}

nav a:hover {
    color: #FF80FF;
}

/* ทำให้ responsive สำหรับหน้าจอมือถือ */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    nav li {
        width: 100%;
        text-align: center;
    }
}


/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

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

    /* Animation for hamburger menu */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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



/* Hero Section */

.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2E0249 0%, #590D82 100%);
    color: #F4C2F4;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(45deg, #A91079, #F806CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFE5FF;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #A91079;
    color: #FFE5FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #F806CC;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 2, 73, 0.5);;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }  
}




/* About Section Styles */

.about-section {
    padding: 4rem 2rem;
    background-color: #FFF0FF;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2E0249;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
}

.content-overlay {
    background: rgba(46, 2, 73, 0.9);
    padding: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.content-text {
    color: #F4C2F4;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .content-block {
        min-height: 300px;
    }

    .content-overlay {
        padding: 1.5rem;
    }
}




/* Requirement Section Styles */

.requirements-section {
    padding: 4rem 2rem;
    background-color: #FFF5FF;
}

.requirements-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.requirement-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(89, 13, 130, 0.12);
    transition: transform 0.3s ease;
}

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

.requirement-title {
    color: #2E0249;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid 2px solid #A91079;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #590D82;
}

.spec-label {
    font-weight: bold;
    color: #A91079;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .requirements-section {
        padding: 2rem 1rem;
    }
    
    .requirements-container {
        grid-template-columns: 1fr;
    }
    
    .requirement-card {
        padding: 1.5rem;
    }
}




/* Contact Section */

.contact-section {
    padding: 4rem 2rem;
    background-color: #FFF0FF;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Form selected_section */
.contact-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(89, 13, 130, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #2E0249;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #A91079;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #A91079;
    color: #FFE5FF;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #960E6B;
}

/* LINE Contact selected_section */
.line-contact-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(89, 13, 130, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.line-add-friend {
    text-align: center;
}

.line-info {
    text-align: center;
}

.line-info h3 {
    margin-bottom: 1rem;
    color: #2E0249;
}

.line-info p {
    color: #590D82;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.line-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.line-link {
    color: #A91079;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.line-link:hover {
    color: #960E6B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .line-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}



