* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}

/*-----------navigation bar-----------*/
.navbar {
    font-family: 'Poppins', serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px;
    top: 0;           
    z-index: 1000;     
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white; 
    white-space: nowrap;
    position: sticky;
}
.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}
.logo img {
    height: 95px;
    margin-right: 10px;
}
.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 25px;
    color: #000;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    
}
.nav-links a {
    text-decoration: none;
    color: #000;
    margin: 0 10px;
    font-size: 15px;
    padding: 8px 24px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.nav-links .current {
    background-color: #4b3306;
    color: #fff;
}

.nav-links a:hover {
    background-color: #4b3306;
    color: #fff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.nav-links.mobile-active {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}


@media (max-width: 768px) {
    body {
        padding: 15px 10px 30px;
    }
    
    .navbar {
        padding: 8px 15px;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
    }
    
    .nav-links.mobile-active {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 10px;
    }
    
    .nav-links a {
        margin: 0;
        padding: 12px 16px;
        text-align: center;
        flex: 1;
        font-size: 14px;
    }

}
@media (max-width: 480px) {
    .navbar {
        padding: 6px 10px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 10px 14px;
    }
    .mobile-menu-toggle {
        font-size: 20px;
    }   

}

/* Homepage Styles */

 .bodyHome {
    position: relative;
    background: url('photos/homepage.png') no-repeat center center/cover;
    color: #fff;
    padding: 1rem 1rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.bodyHomeOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(26, 26, 26, 0.8);
    z-index: 0;
}

.bodyHomeContent {
    font-family: 'Poppins', serif;
    text-align: center;
    z-index: 1;
    max-width: 80%;
    margin-top:5rem; 
}

.bodyHomeContent h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 85px;
    font-weight: 500;
    margin-bottom: 4%;
}
.bodyHomeText {
    text-align: center;
    font-weight: 400;
    font-size: 25px;
    max-width: 90%;
    margin: 0 auto 4rem;
}

/* Hero Section */

.hero-content {
width: 100%;
animation: fadeInUp 1s ease-out;
}

.cta-button {
background: linear-gradient(45deg, #c8860d, #e4a425);
color: white;
padding: 1.4rem 5rem;
border: none;
border-radius: 50px;
margin-top: 2rem;
font-size: 1.8rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(200, 134, 13, 0.4);
}

/* Services Section */
.services {
padding: 5rem 5%;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
position: relative;
overflow: hidden;
}

.services::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(200,134,13,0.1)"/></svg>') repeat;
animation: float 20s infinite linear;
}

@keyframes float {
0% { transform: translateX(0); }
100% { transform: translateX(-100px); }
}

.section-title {
text-align: center;
font-family: 'DM Serif Display', serif;
font-weight: 500;
font-size: 3.5rem;
color: #fff;
margin-bottom: 1rem;
position: relative;
z-index: 1;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title2 {
text-align: center;
font-family: 'DM Serif Display', serif;
font-weight: 500;
font-size: 3.5rem;
color: #333;
margin-bottom: 3rem;
position: relative;
}

.section-subtitle {
text-align: center;
margin-top: 1.4rem;
font-size: 1.2rem;
color: #c8860d;
margin-bottom: 4rem;
position: relative;
z-index: 1;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 4px;
background: linear-gradient(45deg, #c8860d, #e4a425);
border-radius: 2px;
}

.services-container {
max-width: 1400px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.service-card {
background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.1);
padding: 2.5rem 2rem;
border-radius: 20px;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
transition: left 0.5s ease;
}

.service-card:hover::before {
left: 100%;
}

.service-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(200,134,13,0.3);
border-color: rgba(200,134,13,0.5);
}

.service-icon {
width: 100px;
height: 100px;
background: linear-gradient(45deg, #c8860d, #e4a425);
border-radius: 50%;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: white;
position: relative;
box-shadow: 0 10px 30px rgba(200,134,13,0.4);
transition: all 0.3s ease;
}

.service-card:hover .service-icon {
transform: rotateY(180deg);
box-shadow: 0 15px 40px rgba(200,134,13,0.6);
}

.service-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.6rem;
margin-bottom: 1rem;
color: #fff;
font-weight: 600;
}

.service-card p {
color: #ccc;
line-height: 1.7;
font-size: 1rem;
}

/* About Section */
.about {
padding: 5rem 5%;
background: white;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
align-items: center;
}

.about-text {
padding: 2rem;
}

.about-text h2 {
font-family: 'DM Serif Display', serif;
font-weight: 500;
font-size: 3.2rem;
color: #333;
margin-bottom: 1rem;
}

.about-text p {
color: #666;
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.about-image {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(47, 13, 200, 0.3), rgba(228, 88, 37, 0.3));
z-index: 1;
}

.about-image-placeholder {
width: 100%;
height: 400px;
background: url('photos/homepage.png') no-repeat center center/cover;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
font-weight: 600;
}

.about-image-placeholder p{
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 1;
}

/* Features Section */
.features {
padding: 5rem 5%;
background: #1a1a1a;
color: white;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.feature-item {
text-align: center;
padding: 2rem;
}

.feature-number {
font-size: 3rem;
font-weight: bold;
color: #c8860d;
font-family: 'DM Serif Display', serif;
}

.feature-item h3 {
font-size: 1.3rem;
margin: 1rem 0;
color: white;
}

.feature-item p {
color: #ccc;
}

/* Testimonials */
.testimonials {
padding: 5rem 5%;
background: #f8f9fa;
}

.testimonial-slider {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.testimonial-card {
background: white;
padding: 3rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
}

.testimonial-text {
font-style: italic;
font-size: 1.2rem;
color: #666;
margin-bottom: 1.5rem;
}

.testimonial-author {
font-weight: 600;
color: #c8860d;
}

.stars {
color: #c8860d;
font-size: 1.2rem;
margin-bottom: 1rem;
}

/* Contact Section */
.contact {
padding: 5rem 5%;
background: white;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.contact-info {
padding: 2rem;
}

.contact-info h3 {
font-family: 'DM Serif Display', serif;
font-size: 1.8rem;
color: #333;
margin-bottom: 1rem;
}

.contact-item {
display: flex;
align-items: center;
margin-bottom: 1rem;
gap: 1rem;
}

.contact-icon {
width: 40px;
height: 40px;
background: #c8860d;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
}

.contact-form {
background: #f8f9fa;
padding: 2rem;
border-radius: 15px;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: #333;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #c8860d;
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

/* Footer */
.footer {
background: #1a1a1a;
color: white;
padding: 3rem 5%;
text-align: center;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.footer-section h4 {
font-family: 'DM Serif Display', serif;
font-size: 1.5rem;
color: #c8860d;
margin-bottom: 1rem;
}

.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1rem;
}

.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
transition: transform 0.3s ease;
}

.fb{
    background: #ffffff;
    color: rgb(43, 76, 169);
}

.social-icon:hover {
transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.fade-in {
animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}

.bodyHome h1 {
font-size: 2.5rem;
}

.bodyHome p {
font-size: 1.1rem;
}

.about-content,
.contact-content {
grid-template-columns: 1fr;
}

.services-grid {
grid-template-columns: 1fr;
}



.bodyHome,
.services,
.about,
.features,
.testimonials,
.contact {
padding: 3rem 2%;
}
}
