:root {
    --primary: #c5a059; /* Gold accent */
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    scroll-behavior: smooth;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.container { max-width: 1300px; margin: auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: white; }
.text-center { text-align: center; }
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #ab8b4a; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; 
    width: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .container{display: flex; justify-content: space-between; padding: 20px 20px;}
.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo a{ color: #000; text-decoration: none; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; align-items: center;}
.nav-links li a { text-decoration: none; color: var(--dark); margin-left: 25px; font-weight: 600; }
.nav-links li a:hover { color: var(--primary); }
.nav-links li a.active {color: var(--primary);}
.menu-btn{position: absolute; top: 50%; margin-top: -20px; right: 15px; width: 40px; height: 40px; display: block; text-indent: -9999px; overflow: hidden; background: url('./img/menu.png') no-repeat; border: 0; cursor: pointer; display: none;}
.menu-btn.active-menu{ background: url('./img/close.png') no-repeat; }

/* Hero Slider */
.hero-slider .slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-slider .slick-dots{
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
}
.hero-slider .slick-dots li button{display: block; text-indent: -99999px; overflow: hidden;}
.hero-slider .slick-dots li{height: 15px; width: 15px; background: #000; border-radius:50px; transition: width 0.4s ease-in-out;}
.hero-slider .slick-dots li.slick-active{background: var(--primary); width: 40px;}
.hero-content h1 { font-size: 4rem; margin-bottom: 10px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 20px; }

/* About Us */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 5px; }
.about-text h2 {margin-bottom: 15px;}
.about-text p {margin-bottom: 15px;}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.service-card { padding: 40px; background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card:hover { transform: translateY(-10px); }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.portfolio-grid img { border-radius: 10px; width: 100%; height: 250px; object-fit: cover; cursor: pointer; transition: 0.3s; }
.portfolio-grid img:hover { opacity: 0.8; }

/* Testimonials */
.testimonial-slider { max-width: 700px; margin: auto; }
.testimonial-item p { font-size: 1.5rem; font-style: italic; margin-bottom: 20px; }
.testimonial-slider .slick-dots{ margin-bottom: -20px; }
.testimonial-slider .slick-dots li button{display: block; text-indent: -99999px; overflow: hidden;}
.testimonial-slider .slick-dots li{height: 15px; width: 15px; background: #fff; border-radius:50px; transition: width 0.4s ease-in-out;}
.testimonial-slider .slick-dots li.slick-active{background: var(--primary); width: 40px;}

/* Contact Form */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd;
}

.footer { background: var(--dark); color: white; text-align: center; padding: 20px 0; }

/* Responsive */
@media (max-width: 768px) {
    .about-grid, .services-grid, .contact-container { grid-template-columns: 1fr; }
    .nav-links { display: none; position: absolute; top: 55px; left: 0; width: 100%; background: #fff; padding: 20px 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .menu-btn { display: block; }
    .navbar .container { padding: 8px 20px; }
    .nav-links.active-nav { display: flex; gap: 10px; flex-direction: column; align-items: flex-start;}
}