/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Variables */
:root {
    --primary-green: #1e5130;
    --secondary-green: #2d5a40;
    --light-green: #3c7a54;
    --nav-beige: #f3f3f3;
    --cta-orange: #ff6b35;
    --text-dark: #333;
    --text-light: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    padding: 1rem 3rem;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-brand {
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 100%;
    width: auto;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 90px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--secondary-green);
}

.cta-button {
    background-color: var(--cta-orange);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../assets/images/hero_regnskov.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-prompt {
    margin-top: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.scroll-prompt span {
    font-size: 1.2rem;
    opacity: 0.9;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.scroll-link {
    text-decoration: none;
    color: var(--text-light);
}

.scroll-link:hover {
    text-decoration: none;
    color: var(--text-light);
}

/* Module Sections */
.module {
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.module:nth-child(even) {
    background-color: #d0d0d0;
}

.module:nth-child(even) .module-container {
    direction: rtl;
}

.module:nth-child(even) .module-container > * {
    direction: ltr;
}

.module-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.module-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.module-content {
    padding: 2rem;
}

.module-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.module-text {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.module-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--cta-orange);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.module-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Amazon Module specific styling */
.module.amazon-module {
    background-color: #000;
    color: var(--text-light);
}

.amazon-module .module-title,
.amazon-module .module-text {
    color: var(--text-light);
}

.amazon-module .module-button {
    background-color: var(--cta-orange);
    border: 2px solid var(--cta-orange);
}

.amazon-module .module-button:hover {
    background-color: transparent;
    color: var(--cta-orange);
}

/* Contact Section */
.contact {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 5rem 2rem;
    transition: all 0.3s ease;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

/* Contact section highlight animation */
.contact.highlight {
    animation: contactHighlight 0.6s ease-in-out forwards;
}

@keyframes contactHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 30px 15px rgba(255, 107, 53, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .module-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}

/* About Module specific styling */
.about-module {
    background-color: var(--nav-beige);
    color: var(--text-dark);
    min-height: auto;
    padding: 6rem 2rem;
}

.about-module .module-container {
    display: block;
    text-align: center;
}

.about-module .module-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.about-module .module-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-module .module-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

.about-module .module-text a {
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.about-module .module-text a:hover {
    color: var(--secondary-green);
    border-bottom-color: var(--secondary-green);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 2rem;
}

.video-modal.active {
    display: block !important;
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.95);
}

.video-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--cta-orange) rgba(255, 255, 255, 0.1);
}

.video-gallery::-webkit-scrollbar {
    height: 8px;
}

.video-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.video-gallery::-webkit-scrollbar-thumb {
    background-color: var(--cta-orange);
    border-radius: 4px;
}

.video-container {
    flex: 0 0 auto;
    width: 560px;
    height: 315px;
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
} 