/* Reset and Global Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: rgb(82, 82, 82);
} */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: rgb(82, 82, 82);
}

/* Hero Section Styling */
.hero {
    height: 100vh;
    background-image: url('Hero Section.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.location-icon{
    
    display: inline-block;
    width: 24px; /* Adjust as needed */
    height: 24px; /* Adjust as needed */
    background-image: url('/LocationIcon.png');
    background-size: contain;   
    margin-right: 11px;
}
.phone-icon{
    
    display: inline-block;
    width: 24px; /* Adjust as needed */
    height: 24px; /* Adjust as needed */
    background-image: url('/PhoneIcon.png');
    background-size: contain;
    margin-right: 11px;
}

.email-icon{
    
    display: inline-block;
    width: 23px; /* Adjust as needed */
    height: 18px; /* Adjust as needed */
    background-image: url('/MailIcon.png');
    background-size: cover;
    margin-right: 16px;   
}
.woody-icon{
    
    display: inline-block;
    width: 32px; /* Adjust as needed */
    height: 32px; /* Adjust as needed */
    background-image: url('/woodyvibes_logo_white.png');
    background-size: contain;
    margin-right: 10px;
}

.whatsapp-icon{
    
    display: inline-block;
    width: 24px; /* Adjust as needed */
    height: 24px; /* Adjust as needed */
    background-image: url('/WhatsAppIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.item{
    display: flex;
    align-items: center;
    flex-direction: row;
}

.woody-gem-icon{
    
    display: inline-block;
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    background-image: url('/woodygem_logo_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 4px;
}
/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

/* Container for Hero Text */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    color: white;
}

/* Hero Content Layout */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

/* Hero Text Left and Right Columns */
.hero-text {
    width: 50%;
}

.right {
    text-align: end;
}

.hero-text.left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text.left h5 {
    font-size: 18px;
    color: rgba(225, 225, 225, 0.8);
}

/* Button Styling */
.btn {
    background-color: rgba(128, 128, 128, 0.7);
    color: white;
    border: 2px solid white;
    width: 200px;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background-color: white;
    color: black;
    transition: background-color 0.3s ease;
}

/* Responsive Layout: Stacks text and button on smaller screens */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        margin-bottom: 20px;
    }

    /* .btn {
        width: 100%;
    } */
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: white;
    z-index: 1000;
}

.navbar>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Logo Styling */
.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: flex;
}
.gem{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* Navigation Links - Desktop */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    min-width: fit-content;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #bbb;
}

/* Hamburger Menu - Mobile Only */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Mobile Drawer Menu */
.nav-drawer {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px 20px;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-drawer.open {
    right: 0;
}

/* Drawer Links */
.nav-drawer li a {
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.nav-drawer li a:hover {
    color: #bbb;
}

/* Responsive - Mobile */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-drawer {
        display: flex;
    }
}



.mb-10 {
    margin-bottom: 100px;
}

.value-title {
    font-weight: bold;
    font-size: 18px;
    margin: 16px 0px;
}

h1 {
    font-weight: bold;
}

.logo {
    font-weight: bold;
    letter-spacing: 4px;
}

.gradient-overlay {
    height: 300px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.hero-text {
    z-index: 1;
}

div {
    scroll-margin-top: 100px;
    /* Adjust according to your navbar height */
}

/* Buttons */
.btn-primary {
    background-color: rgba(63, 63, 63, 0.7);
    border-color: white;
    width: 150px;
}

.btn-primary:hover {
    background-color: white;
    color: black;
    opacity: 1.0;
}

.gray-text {
    color: rgba(225, 225, 225, 1.0);
}

/* Hero Section */
/* .hero {
    height: 100vh;
    background-image: url('Hero Section.jpg');
    background-size: cover;
    background-position: center;
} */

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

/* About Section */
.section-about {
    display: flex;
    align-items: center;
    
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    gap: 100px;
    width: 100%;
    padding-bottom: 32px;
    margin-top: 100px 0px;
    text-align: justify;
}

.about-content img {
    display: flex;
    align-items: center;
    max-height: 500px;
}

.about-content div {
    width: 40%;
}

/* Our Values */
.our-values {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.our-content {
    width: 82%;
    margin: 16px 0px;
    display: flex;
    flex-direction: column;
}

.left {
    text-align: left;
}

.justify {
    text-align: justify;
}

.content-items {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 100px;
}

.item {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.content-items img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* WoodyGem Section */
.woody-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    gap: 100px;
    width: 100%;
}

.woody-text {
    padding: 32px 0px;
}

.woody-content img {
    display: flex;
    align-items: center;
    max-height: 500px;
    height: 100%;
}

.woody-content div {
    width: 40%;
}

/* Our Story Section */
.our-story {
    text-align: center;
    background-color: rgb(82, 82, 82);
    color: white;
    padding: 32px;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.title h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
}


.who h3 {
    font-size: 26px;
    font-weight: bold;
    margin-top: 50px;

}

/* Team Section */
.team {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 50px; */
    margin-top: 30px;
}

.team-item {
    padding: 32px;
    text-align: center;
    width: 400px;
}

.team-item img {
    width: 256px;
    height: 256px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
}
.our-values-text{
    margin: 16px 0px 32px 0;
}
.focus{
    font-weight: bold;
    color: white;
}

.team-item .name {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Footer */
.footer {
    margin-top: 100px;
    background-color: black;
    color: white;
    padding: 60px 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-content {
    padding-bottom: 40px;
}

.footer h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
}

.footer p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer p strong {
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        gap: 20px;

        justify-content: start;
    }

    .story-content {
        max-width: 90%;
    }

    .team-item img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content div {
        width: 90%;
    }

    .our-content {
        width: 100%;
        padding: 16px;
    }

    .content-items {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .item {
        align-items: center;
        text-align: start;
    }

    .content-items>div {
        width: 100%;
    }

    .woody-content {
        flex-direction: column;
        text-align: center;
    }

    .woody-text {
        padding: 32px 0px;
    }

    .woody-content div {
        width: 90%;
    }
}