/* ---------------------------------------
   GLOBAL STYLES
---------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #e8dcc3; /* beige like screenshot */
    color: #333;
}

/* ---------------------------------------
   NAVBAR (Matches Screenshot)
---------------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: #1f2937; /* dark navy */
    color: #fff;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    color: #ffcc66;
    letter-spacing: 1px;
}

.logo span {
    display: block;
    font-size: 12px;
    color: #ffcc66;
    margin-top: -4px;
}

/* NAV LINKS */
.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 17px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

.nav-links a.active {
    background: #f59e0b;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #ffcc66;
}

/* ---------------------------------------
   HAMBURGER MENU (Mobile)
---------------------------------------- */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    display: block;
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #1f2937;
    padding: 20px;
}

.mobile-menu a {
    padding: 12px 0;
    color: #ccdf98;
    font-size: 18px;
}
/* Hover – Premium Glow + Wave */
.hamburger:hover span {
    background: #ffcc66;
    box-shadow: 0 0 8px #ffcc66;
}

.hamburger:hover span:nth-child(1) {
    transform: translateX(5px);
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
}

.hamburger:hover span:nth-child(3) {
    transform: translateX(5px);
}

/* ---------------------------------------
   HERO SECTION
---------------------------------------- */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('assets/images/side.png') center/cover no-repeat;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #ffcc66;
    text-shadow: 0 0 10px black;
}

.hero-content p {
    color: white;
    width: 70%;
    margin: 15px auto;
    font-size: 18px;
}

/* BUTTON */
.btn-primary {
    background: #ff9800;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff7b00;
}

/* ---------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h1, h2, h3 {
    font-family: "Playfair Display", serif;
}

/* ---------------------------------------
   SECTIONS
---------------------------------------- */
.section {
    padding: 60px 80px;
    background: #e8dcc3;
    border-top: 2px solid #d4c6ac;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

/* Underline under section titles */
.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #ffa600;
    border-radius: 2px;
}

/* ---------------------------------------
   VIEW MORE Link
---------------------------------------- */
.view-more {
    text-align: right;
    margin-top: 18px;
}

.view-more a {
    font-size: 15px;
    color: #b88b57;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

/* elegant underline hover effect */
.view-more a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #d4a96a;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.view-more a:hover {
    color: #d4a96a;
}

.view-more a:hover::after {
    width: 100%;
}


/* ---------------------------------------
   CARDS
---------------------------------------- */
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin-top: 12px;
    font-size: 20px;
}

.card p {
    font-size: 15px;
    color: #666;
}

/* ---------------------------------------
   FOOTER
---------------------------------------- */
/* FOOTER */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    width: 30%;
    min-width: 260px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    position: relative;
    padding-bottom: 5px;
}

.footer-column h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ffcc66;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Quick Links */
.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: #ffcc66;
    text-decoration: none;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ffd98c;
}

/* Connect With Us text */
.footer-column p {
    margin: 6px 0;
    color: #ddd;
    font-size: 15px;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #ffcc66;
    font-size: 22px;
    margin-right: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd98c;
}

/* Contact form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    color: #ccc;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-column {
        width: 100%;
    }
}
/* Hover Animation: Quick Links */
.footer-column ul li a {
    color: #ffcc66;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

.footer-column ul li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ffd98c;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-column ul li a:hover {
    color: #ffd98c;
    transform: translateX(3px);
}

/* Hover Animation: Social Icons */
.social-icons a {
    color: #ffcc66;
    font-size: 22px;
    margin-right: 12px;
    transition: 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.8);
}

/* Hover Animation: Form Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(255, 204, 102, 0.5);
}

/* Hover Animation: Footer Headings */
.footer-column h3 {
    transition: 0.3s ease;
    cursor: default;
}

.footer-column h3:hover {
    color: #ffcc66;
    transform: translateX(5px);
}


/* ---------------------------------------
   ANIMATIONS
---------------------------------------- */
.fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------
   RESPONSIVE DESIGN
---------------------------------------- */
@media (max-width: 992px) {
    .card { width: 45%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }

    .mobile-menu.open { display: flex; }

    .card { width: 100%; }
    .contact-form { width: 85%; }
    .section { padding: 40px 30px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 32px; }
    .section { padding: 30px 20px; }
}
nav a i {
    margin-right: 6px;
}
.mobile-menu a.active {
    color: #22db0a;
    font-weight: 600;
}