/* Root Variables */
:root {
    --primary-bg: #1a1a1a;
    --accent-color: #C41427;
    --text-color: #CDD1D1;
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Playfair Display', serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Navigation Styles */
.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: transparent;
    z-index: 1000;
}

.logo-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 130px;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    top: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.main-nav {
    position: fixed;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-bg);
    padding: 15px 30px;
    border-radius: 25px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FFFFFF;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-bg);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.close-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 100px 0 0 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
}

.mobile-nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
}

/* Banner Styles */
.banner {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    z-index: 1;
    top: 0;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    opacity: 0.9;
    animation: slowZoom 30s ease-in-out infinite alternate;
    transform-origin: center;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.banner-text h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.banner-text h1 span {
    color: #C41427;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(0, 0, 0, 0.5);
}

.banner-text p {
    font-size: 1.4em;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6),
                 0 0 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    animation: fadeText 15s infinite;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.banner-text p:nth-child(2) {
    animation-delay: 0s;
}

.banner-text p:nth-child(3) {
    animation-delay: 5s;
}

.banner-text p:nth-child(4) {
    animation-delay: 10s;
}

/* Content Styles */
.content {
    flex: 1 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Story Section Alt */
.story-section-alt {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section-content {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: visible;
}

.section-content.reverse {
    direction: ltr;
}

.section-content.reverse .text-column {
    float: right;
}

.section-content.reverse .image-column {
    float: left;
}

.text-column {
    width: 50%;
    height: 100vh;
    padding: 40px 60px;
    display: inline-block;
    vertical-align: top;
    color: #FFFFFF;
    background-color: inherit;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    float: left;
}

.text-column h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.text-column p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-column {
    width: 50%;
    height: 100vh;
    overflow: visible;
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #000;
    float: left;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-0.5%, -0.5%);
    }
    100% {
        transform: scale(1.05) translate(0.5%, 0.5%);
    }
}

@keyframes fadeText {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    5%, 30% {
        opacity: 1;
        transform: translateY(0);
    }
    35%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Banner Half Height */
.banner-half {
    width: 100vw;
    height: 70vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.banner-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-half .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.banner-half .banner-text h1 {
    font-size: 3.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
}

/* Section Title and Decorative Line */
.section-title {
    color: var(--accent-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.decorative-line {
    border: none;
    height: 2px;
    background: var(--accent-color);
    margin: 30px auto;
    position: relative;
    width: 200px;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: -60px;
    border-right: none;
    border-top: none;
}

.decorative-line::after {
    right: -60px;
    border-left: none;
    border-bottom: none;
}

/* Story Section */
.story-section {
    width: 100%;
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.story-section .section-content.full-width {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

.story-section .text-column.full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    float: none;
}

.story-section .text-column p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Story Grid Layout */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.story-grid.reverse {
    direction: rtl;
}

.story-grid.reverse .story-text {
    direction: ltr;
}

.story-text {
    padding: 0 20px 20px 20px;
    align-self: flex-start;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    flex-shrink: 0;
    width: 100%;
    background-color: var(--primary-bg);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-wrapper {
        background-color: var(--primary-bg);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }

    .logo-container {
        position: relative;
        left: auto;
        right: 0;
        transform: none;
        width: 156px;
        height: 130px;
        border-radius: 0;
        box-shadow: none;
        top: 0;
        background-color: transparent;
    }

    .logo-container img {
        width: 130px;
        height: 104px;
        object-fit: contain;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu.active .mobile-nav-links {
        display: block;
    }

    .mobile-menu.active .close-menu {
        display: block;
    }

    .banner {
        width: 100vw;
        height: 100vh;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .banner img {
        width: 100vw;
        object-position: center;
    }

    .banner-text h1 {
        font-size: 2.5em;
    }

    .banner-text p {
        font-size: 1.2em;
    }

    .section-content {
        height: auto;
        margin-bottom: 20px;
    }

    .text-column {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        min-height: 50vh;
        float: none;
        margin-top: 20px;
    }

    .image-column {
        width: 100%;
        height: 50vh;
        position: relative;
        float: none;
        margin-bottom: 20px;
    }

    .story-section-alt {
        min-height: auto;
    }

    .banner-half {
        height: 60vh;
        margin-top: 0;
    }

    .banner-half .banner-text h1 {
        font-size: 2.5em;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-section .text-column p {
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .decorative-line {
        width: 150px;
    }

    .decorative-line::before,
    .decorative-line::after {
        width: 30px;
        height: 30px;
    }

    .decorative-line::before {
        left: -45px;
    }

    .decorative-line::after {
        right: -45px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }

    .story-grid.reverse {
        direction: ltr;
    }

    .story-text {
        padding: 10px;
    }

    .story-text p {
        font-size: 1em;
    }

    .story-image {
        height: 300px;
        order: -1;
    }

    .content {
        padding-bottom: 20px;
    }
}

/* Page Layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Story Section */
.story-section {
    width: 100%;
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.story-section .section-content.full-width {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* Footer Styles */
footer {
    flex-shrink: 0;
    width: 100%;
    background-color: var(--primary-bg);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .story-section {
        padding: 40px 0;
    }
    
    .content {
        padding-bottom: 20px;
    }
}

/* Main Content Block Layout for Story Page */
.main-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 30px 0 30px;
    flex: 1 0 auto;
    display: block;
}

.story-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
}

.story-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 500px;
    max-width: 48vw;
    padding: 20px;
}

.story-img-left,
.story-img-right {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.story-text {
    flex: 1;
    padding: 0 0 20px 0;
    align-self: flex-start;
}

.story-text p {
    margin-bottom: 24px;
    font-size: 1.4em;
    line-height: 1.85;
}

@media (max-width: 900px) {
    .story-block {
        flex-direction: column;
        gap: 20px;
    }
    .story-images {
        width: 100%;
        max-width: 100%;
    }
    .story-img-left,
    .story-img-right {
        height: 220px;
    }
    .main-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.section-title, .main-content h2, .main-content h1, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
    color: #fff !important;
}

/* Contact Page Layout */
.contact-block {
    display: flex;
    gap: 40px;
    margin: 40px 0 60px 0;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    font-size: 1.15em;
    color: #fff;
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 30px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-details h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.3em;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: underline;
    word-break: break-all;
}

.contact-form {
    flex: 1;
    background: rgba(0,0,0,0.10);
    border-radius: 10px;
    padding: 30px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.contact-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    font-size: 1.1em;
    resize: vertical;
}

.contact-form textarea {
    min-height: 100px;
}

.red-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.red-btn:hover {
    background: #a0101f;
}

.map-block {
    margin: 40px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .contact-block {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        display: block;
    }
    .contact-details, .contact-form {
        width: 100% !important;
        flex: none !important;
        padding: 18px 0 !important;
        box-sizing: border-box;
        margin: 0 !important;
        display: block;
    }
    .map-block {
        margin-top: 24px;
    }
    .main-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Blog List Layout */
.blog-list {
    display: flex;
    gap: 40px;
    margin: 40px 0 60px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: rgba(0,0,0,0.13);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
    overflow: hidden;
    width: 48%;
    min-width: 320px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 12px;
}

.blog-card-content p {
    color: #eee;
    font-size: 1.1em;
    margin-bottom: 18px;
    flex: 1;
}

.blog-btn {
    align-self: flex-start;
    padding: 10px 28px;
    font-size: 1em;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .blog-list {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0 40px 0;
        align-items: center;
    }
    .blog-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .blog-card img {
        height: 180px;
    }
    .blog-card-content {
        padding: 18px 12px 16px 12px;
    }
} 