/* Google Fonts */
@import url('https://fonts.google.com/css2?family=Poppins:wght@400;600&display=swap');

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

/* Header */
header {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 220px;
    height: auto;
    transition: transform 0.3s;
}

header img:hover {
    transform: scale(1.05);
}

/* Navigation */
nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
}

nav a {
    color: #f9f9f9;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFD700;
}

nav a.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0,7),rgba(0,0,0,0,7)), url('images/IMG-20250703-WA0047.jpg');
    background-size: cover;
    color: black;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
  
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* CTA Button */
.cta-button {
    background-color: #FFD700;
    color: #000;
    padding: 12px 3opx;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

/* Gallery */
.gallery img {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px;
}

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

.gallery img:hover {
    transform: scale(1.03);
}

.gallery p {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.contact-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin:0 15px ;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #FFD700;
}

.copyright {
    margin-top: 20px;
    font-size: 0,9rem;
    opacity: 0,8;
}

/* Form Style */
form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0,1);
}

form lable {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

form input
form textarea
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

form button {
    background-color: #000;
    color: wheat;
    border: none;
    padding: 12px 30px;
    border-radius: 4 px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav   {
          flex-direction: column;
          gap: 10px;
}

.hero {
    padding: 60px 20px;
}

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

.gallery {
    grid-template-columns: 1fr;
    padding: 20px;
}
}



