@import url('https://fonts.googleapis.com/css2?family=Anton&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

/* NAVBAR */
.navbar {
    background-color: #3d733f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo {
    margin-top: -15px;
    margin-bottom: -20px;
}

.nav-links {
    margin-right: 0;
}

.logo img {
    height: 150px;  
    width: auto;          
    object-fit: contain; 
}

.logo a {
    display: inline-block;
}

.logo a img {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    font-family: "Anton", sans-serif;
    font-size: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #6fee76;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    border-bottom: 3px solid #6fee76;
    padding-bottom: 5px;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh; /* Full screen height */
    background: url('images/background.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* darker overlay on image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* making sure content is above overlay*/
.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    font-family: "Anton", sans-serif;
    color: #6fee76;
    font-size: 40px;
    text-transform: uppercase;
}

.hero button {
    padding: 18px 45px;         
    font-size: 20px;
    font-weight: bold;
    background: transparent;    
    color: #6fee76;  
    border: 3px solid #6fee76;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero button:hover {
    background-color: #6fee76;
    color: #1e1e1e;
    transform: scale(1.05);
}

/* CONTACT PAGE */
.page-content {
    padding: 80px 20px;
    text-align: center;
}

.page-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

.contact-section { 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-color: #f4f4f4; 
    padding: 60px 20px; } 

.contact-container { 
    width: 100%; 
    max-width: 600px; 
    background: white; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
    font-family: "Courier New", Courier, monospace;
} 

.contact-container h2 { 
    text-align: center; 
    margin-bottom: 30px; 
    color: #3d733f; 
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    font-size: 40px;
} 

.contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; } 

    .form-group { 
        display: flex; 
        flex-direction: column; 
        gap: 8px; 
    } 
    
    .form-group label { 
        font-weight: bold; 
    } 
    .form-group input, .form-group textarea { 
        padding: 12px; 
        border: 2px solid #3d733f; 
        border-radius: 5px; 
        font-family: "Courier New", Courier, monospace; 
    } 
    
    .form-group input:focus, .form-group textarea:focus { 
        outline: none; 
        color: #3d733f; 
    } 
    .form-group small { 
        font-size: 12px; 
        color: #555; 
    } 
    
    .contact-form button { 
        padding: 15px; 
        background: transparent; 
        color: #3d733f; 
        border: 3px solid #3d733f; 
        border-radius: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s ease; 
    } 
    
    .contact-form button:hover { 
        background: #6fee76; 
        color: #1e1e1e; 
    }

/* IMAGE CAROUSEL */
.image-carousel {
    background-color: #3d733f;
    padding: 120px 80px 60px 80px;
    overflow: hidden;
}

.news-home-title h1 {
    font-family: "Anton", sans-serif;
    font-size: 90px;
    color: #6fee76;
    text-transform: uppercase;
    line-height: 0.9;
    padding-bottom: 60px;
    padding-left: 60px;
}

/* scroll container */
.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 60px;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* each image */
.carousel-item {
    flex: 0 0 auto;
    width: 250px; /* controls size */
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
}

/* image inside */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* hover zoom */
.carousel-item:hover img {
    transform: scale(1.05);
}

/* ABOUT SECTION */
.about-home {
    background-color: #3d733f; /* same as navbar */
    padding: 120px 80px 40px 80px;
}

.about-home-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px 80px 30px 80px;
    gap: 40px;
}

/* left side */
.about-home-left {
    flex: 1;
    padding-top: 20px;
}

.about-home-left h1 {
    font-family: "Anton", sans-serif;
    font-size: 90px;
    color: #6fee76;
    text-transform: uppercase;
    line-height: 0.9; /* tighter, more editorial */
}

/* right side */
.about-home-right {
    flex: 1;
}

.about-home-right p {
    font-family: "Courier New", Courier, monospace;
    font-size: 18px;
    line-height: 1.7;
    color: #f2f2f2;
    margin-bottom: 25px;
}

.about-home-right strong {
    color: #6fee76;
}

/* NEWS PAGE */

.news-page {
    background: #f9f9f9;
    padding: 70px 20px;
    font-family: "Anton", sans-serif;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h1 {
    font-size: 48px;
    letter-spacing: 2px;
    color: #3d733f;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* CARD ON NEWS PAGE */
.news-card {
    display: flex;
    text-decoration: none;
    background: white;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE LEFT ON CARD */
.news-card img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* TEXT RIGHT ON CARD*/
.news-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-text h2 {
    font-size: 22px;
    color: #3d733f;
    margin-bottom: 10px;
}

.news-text p {
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

/* ARTICLE PAGE */
.article-page {
    background: #f9f9f9;
    padding: 80px 20px;
    font-family: "Fira Sans", sans-serif;
}

/* TITLE eimear html */
.article-title-eimear {
    text-align: center;
    font-size: 48px;
    color: #3d733f;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.article-title {
    text-align: center;
    font-size: 48px;
    color: #3d733f;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* VIDEO strand html */
.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.video-container iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    border-radius: 8px;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Courier New", Courier, monospace;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

.article-text p {
    margin-bottom: 25px;
}

/* IMAGE FLOAT LEFT EIMEAR */
.article-img-left {
    float: left;
    width: 300px;
    max-width: 100%;
    margin: 0 25px 20px 0;
}

/* CLEAR FLOAT */
.article-text::after {
    content: "";
    display: block;
    clear: both;
}

/* CONTACT HOME SECTION */
.contact-home {
    background-color: #3d733f;
    padding: 70px 80px;
    padding-bottom: 150px;
}

.contact-home-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT SIDE */
.contact-home-left {
    flex: 1;
}

.contact-home-left h1 {
    font-family: "Anton", sans-serif;
    font-size: 90px;
    color: #6fee76;
    text-transform: uppercase;
    line-height: 0.9;
    padding-left: 60px;
}

/* RIGHT SIDE */
.contact-home-right {
    flex: 1;
}

/* FORM */
.contact-home-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Inputs */
.contact-home .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-home label {
    font-family: "Courier New", Courier, monospace;
    color: #f2f2f2;
}

.contact-home input,
.contact-home textarea {
    padding: 12px;
    border: 2px solid #6fee76;
    background: transparent;
    color: #f2f2f2;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
}

.contact-home input:focus,
.contact-home textarea:focus {
    outline: none;
    border-color: #ffffff;
}

/* Button */
.contact-home button {
    padding: 15px;
    background: transparent;
    color: #6fee76;
    border: 3px solid #6fee76;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Anton", sans-serif;
}

.contact-home button:hover {
    background: #6fee76;
    color: #1e1e1e;
}

.read-button-container {
    margin-top: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: bold;
}

.read-btn {
    display: inline-block;
    padding: 15px 25px;
    background: transparent;
    color: #000000;
    border: 3px solid #6fee76;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.read-btn:hover {
    background: #6fee76;
    color: #1e1e1e;
}

.article-page-flipbook {
    background: #3d733f;
    padding: 80px 20px;
    font-family: "Fira Sans", sans-serif;
}

.article-title-flipbook {
    text-align: center;
    font-size: 48px;
    color: #6fee76;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .socials a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }

    .news-card img {
        width: 100%;
        height: 200px;
    }
}

/* FOOTER */
.footer {
    background-color: #111;
    color: #f2f2f2;
    padding: 60px 80px;
    border-top: 4px solid #6fee76;
    font-family: "Fira Sans", sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE */
.footer-left h3 {
    font-family: "Anton", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #6fee76;
    margin-bottom: 15px;
}

.footer-left p {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

/* RIGHT SIDE */
.footer-right {
    text-align: right;
    font-size: 14px;
    opacity: 0.8;
}

.footer-right p {
    margin-bottom: 15px;
}

/* SOCIAL LINKS */
.socials a {
    color: #6fee76;
    text-decoration: none;
    margin-left: 20px;
    font-family: "Anton", sans-serif;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.socials a:hover {
    opacity: 0.6;
}