/**
 * Custom Styles for Rye Logistics Park Theme
 *
 * @package Rye_Logistics_Park
 * @version 1.0.0
 * @author Cormack Advertising
 */

/* ==========================================
   GLOBAL STYLES
   ========================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================
   HEADER STYLES
   ========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 100%;
    border-bottom: 1px solid #fff;
}

/* Scrolled State - Sticky with blur */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #fff;
}

/* Logo */
.site-logo {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-logo .logo {
    height: 20px;
    width: auto;
    display: block;
}

.site-address {
    font-family: 'Oakes Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #FFAB75;
    letter-spacing: 0.05em;
}

/* Unit Navigation */
.unit-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide unit buttons when scrolled */
.site-header.scrolled .unit-navigation {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.unit-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Oakes Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.unit-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.unit-btn.active {
    color: rgba(255, 255, 255, 1);
}

.unit-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color:transparent;
}

.unit-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 25px;
}

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Hamburger menu color when scrolled */
.site-header.scrolled .hamburger-line {
    background-color: #1E1E1E;
}

.site-header.scrolled .hamburger-menu:hover .hamburger-line {
    background-color: rgba(30, 30, 30, 0.7);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-30px);
    transition: transform 0.5s ease;
}

.menu-overlay.active .menu-overlay-content {
    transform: translateY(0);
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.overlay-navigation {
    text-align: center;
}

.overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-menu li {
    margin: 30px 0;
}

.overlay-menu a {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.overlay-menu a:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 4px solid #fff;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.hero-background.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
}

/* Brochure Buttons Container */
.brochure-buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* Brochure Button */
.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 171, 117, 1);
    padding: 15px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.brochure-btn-2 {
    margin-left: 0;
}

.brochure-label {
    color: #fff;
    font-family: 'Oakes Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 37px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.brochure-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.brochure-icon path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.brochure-btn:hover {
    background: #fff;
}

.brochure-btn:hover .brochure-label {
    color: rgba(255, 171, 117, 1);
}

.brochure-btn:hover .brochure-icon path {
    fill: #FFAB75;
}

/* Hero Sygnet Divider */
.hero-sygnet {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: auto;
    z-index: 1000;
}

/* Sub Hero Section */
.sub-hero-section {
    position: relative;
    padding: 20px;
    background-image: url('../images/sub-hero/sub-hero-bg.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 4px solid #fff;
}

.sub-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-hero-headline {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 37px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    color: #1E1E1E;
}

.sub-hero-headline strong {
    font-weight: 700;
}

.sub-hero-text {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 800px;
    color: #1E1E1E;
}

.sub-hero-text:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .sub-hero-section {
        padding: 50px 20px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .sub-hero-section {
        padding: 80px 20px;
    }
}

/* Aerial Section */
.aerial-section {
    position: relative;
    width: 100%;
    border-bottom: 4px solid #fff;
    overflow: visible;
}

.aerial-image {
    display: block;
    width: 100%;
    height: auto;
}

.aerial-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.aerial-content button {
    pointer-events: auto;
}

/* Drone Video Button */
.drone-video-btn {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 171, 117, 1);
    padding: 15px 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drone-label {
    color: #fff;
    font-family: 'Oakes Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 37px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.drone-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.drone-icon path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.drone-video-btn:hover {
    background: #fff;
}

.drone-video-btn:hover .drone-label {
    color: rgba(255, 171, 117, 1);
}

.drone-video-btn:hover .drone-icon path {
    fill: #FFAB75;
}

/* Video Popup Modal */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.video-popup-content {
    position: relative;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    transition: all 0.3s ease;
}

.video-close-btn .close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.video-close-btn .close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.video-close-btn .close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.video-close-btn:hover .close-line {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Accommodation Section */
.accommodation-section {
    position: relative;
    padding: 80px 20px 80px 20px;
    background-image: url('../images/accommodation/acco-bg.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-bottom: 4px solid #fff;
    text-align: center;
}

.accommodation-content-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-unit {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.accommodation-unit.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.accommodation-headline {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    color: #1E1E1E;
}

.accommodation-description {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0 auto 30px auto;
    max-width: 900px;
    color: #1E1E1E;
}

.accommodation-data-table {
    margin: 40px auto;
    max-width: 1000px;
}

.accommodation-data-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* Set fixed column widths */
.accommodation-data-table th:nth-child(1),
.accommodation-data-table td:nth-child(1) {
    width: 30%;
}

.accommodation-data-table th:nth-child(2),
.accommodation-data-table td:nth-child(2) {
    width: 25%;
}

.accommodation-data-table th:nth-child(3),
.accommodation-data-table td:nth-child(3) {
    width: 25%;
}

.accommodation-data-table th:nth-child(4),
.accommodation-data-table td:nth-child(4) {
    width: 20%;
}

.accommodation-data-table th {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 15px 20px;
    border-bottom: 1px solid #1E1E1E;
    color: #1E1E1E;
    text-align: center;
    position: relative;
}

.accommodation-data-table th.table-divider-right {
    border-right: none;
}

.accommodation-data-table th.table-divider-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #1E1E1E;
}

.accommodation-data-table td {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 13px 20px;
    border-bottom: none;
    color: #1E1E1E;
    text-align: center;
}

.accommodation-data-table td.table-divider-right {
    position: relative;
}

.accommodation-data-table td.table-divider-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #1E1E1E;
}

.accommodation-data-table td strong {
    font-weight: 700;
}

.accommodation-image-box {
    position: relative;
    background: #fff;
    padding: 40px 40px 40px 40px;
    margin: 50px auto 80px auto;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accommodation-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Accommodation Buttons */
.accommodation-buttons {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    z-index: 10;
    padding: 0 20px;
}

.accommodation-btn {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 50px;
    background: rgba(255, 171, 117, 1);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
}

.accommodation-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 171, 117, 0.4);
}

.accommodation-btn.active {
    opacity: 1;
    background: rgba(255, 171, 117, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .accommodation-buttons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .accommodation-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .accommodation-headline {
        font-size: 28px;
    }

    .accommodation-data-table th,
    .accommodation-data-table td {
        font-size: 11px;
        padding: 10px 5px;
    }

    .accommodation-data-table th {
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .accommodation-image-box {
        padding: 20px;
    }

    .accommodation-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Specifications Section */
.specifications-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    border-bottom: 4px solid #fff;
}

.specifications-list {
    list-style: none;
}

.specifications-list li {
    padding: 10px 0;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    border-bottom: 4px solid #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 4px solid #fff;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.site-footer {
    background-color: #3D3D3D;
    color: #fff;
    padding: 60px 50px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Main Grid: Left (contacts) and Right (developer) */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px;
    align-items: center;
}

/* Left Section: Contact Grid (2 rows x 4 columns) */
.footer-contacts-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr);
    gap: 60px;
    align-items: center;
}

.footer-logo-cell {
    display: flex;
    align-items: center;
}

.footer-logo-hurst {
    width: 127px;
    height: auto;
}

.footer-logo-savills {
    width: 62px;
    height: auto;
}

.footer-contact-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-developer-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-name {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}

.contact-email,
.contact-phone {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-email:hover,
.contact-phone:hover {
    color: rgba(255, 171, 117, 1);
}

/* Right Section: Developer Info */
.footer-developer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 200px;
}

.footer-developer {
    margin-bottom: 0;
}

.developer-text {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.developer-name {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-diamond {
    width: 50px;
    height: auto;
    margin-bottom: 30px;
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.credits-text {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}

.credits-link {
    font-family: 'Oakes Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFAB75;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #fff;
}

/* Responsive Design - Tablet */
@media (max-width: 1200px) {
    .site-footer {
        padding: 50px 30px;
    }

    .footer-main-grid {
        gap: 60px;
    }

    .footer-contact-row {
        grid-template-columns: 120px repeat(3, 1fr);
        gap: 40px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-contacts-section {
        gap: 40px;
    }

    .footer-contact-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo-cell {
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .footer-developer-section {
        align-items: flex-start;
        text-align: left;
    }

    .footer-credits {
        justify-content: flex-start;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ========================================== */

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Header Mobile Optimizations */
    .header-inner {
        padding: 12px 20px;
    }

    .site-logo .logo {
        height: 16px;
    }

    .unit-navigation {
        display: none;
    }

    .overlay-menu a {
        font-size: 32px;
        line-height: 1.3;
    }

    .overlay-menu li {
        margin: 20px 0;
    }

    .menu-close {
        top: 20px;
        right: 20px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        min-height: 100vh;
        height: 100%;
    }

    .brochure-buttons {
        position: absolute;
        flex-direction: row;
        gap: 10px;
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 100;
    }

    .brochure-btn {
        flex: 1;
        justify-content: center;
        padding: 18px 20px;
    }

    .brochure-label {
        font-size: 11px;
        line-height: 1.4;
    }

    .brochure-icon {
        width: 18px;
        height: 18px;
    }

    .hero-sygnet {
        width: 40px;
    }

    /* Sub-Hero Mobile */
    .sub-hero-section {
        padding: 30px 20px;
    }

    .sub-hero-headline {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 25px;
        letter-spacing: 0.05em;
    }

    .sub-hero-text {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    /* Aerial Section Mobile */
    .aerial-section {
        overflow: hidden;
    }

    .drone-video-btn {
        padding: 12px 20px;
        width: 100%;
    }

    .drone-label {
        font-size: 11px;
        line-height: 1.4;
    }

    .drone-icon {
        width: 18px;
        height: 18px;
    }

    /* Video Popup Mobile */
    .video-popup-content {
        width: 95%;
        height: 70%;
    }

    .video-close-btn {
        top: -40px;
        right: 0;
    }

    /* Accommodation Section Mobile */
    .accommodation-section {
        padding: 40px 15px 60px;
    }

    .accommodation-headline {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
        letter-spacing: 0.05em;
    }

    .accommodation-description {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .accommodation-data-table {
        margin: 30px auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .accommodation-data-table table {
        min-width: 100%;
        font-size: 11px;
    }

    .accommodation-data-table th {
        font-size: 10px;
        padding: 10px 8px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .accommodation-data-table td {
        font-size: 11px;
        padding: 10px 8px;
        white-space: nowrap;
    }

    .accommodation-image-box {
        padding: 15px;
        margin: 30px auto 40px;
        border-radius: 8px;
    }

    .accommodation-buttons {
        top: -15px;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .accommodation-btn {
        padding: 10px 20px;
        font-size: 11px;
        border-radius: 30px;
    }

    /* Location Section Mobile */
    .location-section {
        padding: 40px 15px 50px;
    }

    .location-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 25px;
        letter-spacing: 0.02em;
    }

    .location-map-container {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .location-map-container iframe {
        height: 300px;
    }

    .location-table-group {
        gap: 30px;
    }

    .table-heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .ports-heading {
        margin-top: 25px;
    }

    .location-table td {
        font-size: 12px;
        padding: 5px 0;
    }

    .location-table td:first-child {
        padding-right: 15px;
    }

    .location-table td:last-child {
        padding-left: 15px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Header */
    .header-inner {
        padding: 10px 15px;
    }

    .site-logo .logo {
        height: 14px;
    }

    .overlay-menu a {
        font-size: 26px;
    }

    /* Hero Section */
    .brochure-btn {
        padding: 15px 18px;
    }

    .brochure-label {
        font-size: 10px;
    }

    .hero-sygnet {
        width: 35px;
    }

    /* Sub-Hero */
    .sub-hero-section {
        padding: 25px 15px;
    }

    .sub-hero-headline {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .sub-hero-text {
        font-size: 12px;
        line-height: 18px;
        padding: 0 5px;
    }

    /* Aerial */
    .drone-video-btn {
        padding: 10px 15px;
    }

    .drone-label {
        font-size: 10px;
    }

    /* Accommodation */
    .accommodation-section {
        padding: 35px 10px 50px;
    }

    .accommodation-headline {
        font-size: 20px;
        line-height: 26px;
    }

    .accommodation-description {
        font-size: 12px;
        line-height: 18px;
        padding: 0 5px;
    }

    .accommodation-data-table th {
        font-size: 9px;
        padding: 8px 5px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .accommodation-data-table td {
        font-size: 9px;
        padding: 8px 5px;
    }

    .accommodation-image-box {
        padding: 12px;
        margin: 25px auto 35px;
    }

    .accommodation-btn {
        padding: 9px 16px;
        font-size: 10px;
    }

    /* Location */
    .location-section {
        padding: 35px 10px 45px;
    }

    .location-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .location-map-container {
        margin-bottom: 25px;
    }

    .location-map-container iframe {
        height: 250px;
    }

    .table-heading {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .location-table td {
        font-size: 11px;
        padding: 4px 0;
    }

    .location-table td:first-child {
        padding-right: 10px;
    }

    .location-table td:last-child {
        padding-left: 10px;
    }

    /* Footer */
    .site-footer {
        padding: 35px 15px;
    }

    .footer-contacts-section {
        gap: 35px;
    }

    .footer-contact-row {
        gap: 18px;
    }

    .contact-name {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .contact-email,
    .contact-phone {
        font-size: 11px;
        line-height: 16px;
    }

    .developer-text {
        font-size: 13px;
    }

    .developer-name {
        font-size: 20px;
    }

    .footer-diamond {
        width: 40px;
        margin-bottom: 25px;
    }

    .credits-text,
    .credits-link {
        font-size: 13px;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .sub-hero-headline {
        font-size: 16px;
        line-height: 22px;
    }

    .accommodation-headline {
        font-size: 18px;
        line-height: 24px;
    }

    .location-title {
        font-size: 18px;
        line-height: 24px;
    }

    .overlay-menu a {
        font-size: 24px;
    }

    .accommodation-btn {
        padding: 8px 14px;
        font-size: 9px;
    }
}
