/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: rgba(34, 34, 34, 0.9);
    color: #fff;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-text {
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text button {
    padding: 10px 20px;
    border: none;
    background: #ff6600;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

section {
    padding: 4rem 2rem;
    text-align: center;
}

/* About Section */
#about {
    background: #fdfdfd;
}

#about h2 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid rgba(255, 102, 0, 0.4); /* Soft color border */
    display: inline-block;
    color: #444;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Image Styling */
.column1 img {
    max-width: 350px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.column1 img:hover {
    transform: scale(1.05);
}

/* Text Styling */
.column2 {
    max-width: 600px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.column2 p strong {
    font-weight: 700;
    color: #ff6600;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #ff6600;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #094d35;
}

.social-links i {
    font-size: 1.2rem;
}

/* Contact Section */
#contact {
    background: #f9f9f9;
}

#contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid rgba(255, 102, 0, 0.4);
    display: inline-block;
    padding-bottom: 0.5rem;
    color: #444;
}

.contact-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-form, .contact-map {
    flex: 1 1 45%;
    min-height: 350px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #ff6600;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #e55a00;
}

.contact-map iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */

/* Hero Section */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text button {
        font-size: 0.9rem;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .column1 img {
        max-width: 90%;
    }

    .column2 {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-map {
        flex: 1 1 100%;
        min-height: 300px;
    }
}

/* Mobile (small screens) */
@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .contact-form input, .contact-form textarea, .contact-form button {
        font-size: 0.9rem;
    }

    .hero-text {
        padding: 15px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }
}
