/* ===== FONT DECLARATIONS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700&family=Playfair+Display:wght@400;700&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== SKIP LINK FOR ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #6a0e14;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #a04040;
    outline: 2px solid #a04040;
    outline-offset: 2px;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    aria-label: "Toggle navigation menu";
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #6a0e14;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    display: flex;
    width: 100%;
}

.banner-content-image,
.banner-image {
    flex: 1;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #dee2e6;
}

.stat-item:last-child {
    border-right: none;
}

.icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    height: 50px;
    width: auto;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #0f4c81;
    margin: 10px 0;
}

.stat-label {
    font-size: 0.9em;
    color: #4a6fa5;
    line-height: 1.4;
}

/* ===== ABOUT US SECTION ===== */
.about-us-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('aboutus.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 50px;
}

.about-us-container {
    max-width: 600px;
    margin-left: 8%;
}

.about-us-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #6a0e14;
    margin-bottom: 20px;
}

.about-us-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.about-us-text:nth-of-type(3) {
    margin-top: 30px;
}

/* ===== LATEST NEWS SECTION ===== */
.latest-news-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.news-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #6a0e14;
    margin-bottom: 40px;
    margin-left: 8%;
}

.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-blog-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-blog-container:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-preview-text {
    padding: 25px;
    background-color: #fff;
}

.blog-preview-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    color: #6a0e14;
    margin-bottom: 8px;
}

.date {
    font-size: 0.85em;
    color: #888888;
    margin-bottom: 15px;
}

.summary {
    font-size: 0.95em;
    color: #4a4a4a;
    line-height: 1.6;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-post {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.blog-post:hover {
    background-color: #ffffff;
}

.blog-post-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.post-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    color: #6a0e14;
    margin-bottom: 5px;
}

/* ===== SUSTAINABILITY SECTION ===== */
.sustainability-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.sustainability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sustainability-text-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #6a0e14;
    line-height: 1.2;
}

.sustainability-content-column {
    display: flex;
    flex-direction: column;
}

.sustainability-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sustainability-subtitle {
    font-size: 1.3em;
    font-weight: 600;
    color: #6a0e14;
    margin-bottom: 15px;
}

.sustainability-list {
    list-style: none;
}

.sustainability-list li {
    font-size: 1em;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sustainability-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    padding: 80px 50px;
    background:  url('Contact us Banner BG.jpg');
    background-size: cover;
    background-position: center;
}

#connect-heading{
    color: #9e0c29;
}

.connect-column h3{
    color: #9e0c29;
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.connect-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.connect-column p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

.connect-list {
    list-style: none;
}

.connect-list li {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 50px;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .header {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
        background-color: white;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .banner-section {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding: 30px 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .about-us-container {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .about-us-title {
        font-size: 2em;
    }

    .latest-news-section {
        padding: 60px 20px;
    }

    .news-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sustainability-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sustainability-text-column h2 {
        font-size: 2em;
        text-align: center;
    }

    .connect-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .connect-column h3 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0 15px;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .nav-menu a {
        font-size: 1em;
        padding: 12px;
    }

    .stat-value {
        font-size: 2em;
    }

    .about-us-title {
        font-size: 1.8em;
    }

    .about-us-text {
        font-size: 1em;
    }

    .news-header h2 {
        font-size: 2em;
    }

    .blog-post {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .blog-post-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .sustainability-text-column h2 {
        font-size: 1.8em;
    }

    .connect-column h3 {
        font-size: 1.6em;
    }
}

/* Focus indicators for better accessibility */
*:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}