:root {
    --navy: #0e2a47;
    --navy-dark: #0a1e35;
    --blue-accent: #3f7fd6;
    --text-light: #6b7686;
    --bg-light: #f6f8fb;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--navy);
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
.site-header {
    border-bottom: 1px solid #e8edf3;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
    flex-wrap: wrap;
}

.logo-text {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.1;
}

    .logo-text small {
        font-weight: 600;
        font-size: 10px;
        letter-spacing: 1.5px;
        color: var(--text-light);
    }

    .logo-text.light {
        color: #fff;
    }

.main-nav {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

    .main-nav a {
        font-weight: 500;
        font-size: 15px;
    }

        .main-nav a:hover {
            color: var(--blue-accent);
        }

.lang-switch {
    display: flex;
    gap: 6px;
}

    .lang-switch button {
        border: 1px solid #d8e0ea;
        background: #fff;
        padding: 5px 10px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 13px;
    }

        .lang-switch button.active {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
        }

/* Hero */
.hero {
    color: #fff;
    padding: 80px 0 50px;
    text-align: left;
    background: linear-gradient(rgba(10,25,45,.6), rgba(10,25,45,.6)), url('/images/mountains.jpg') center/cover no-repeat;
}

    .hero h1 {
        font-size: 38px;
        font-weight: 800;
        margin: 0 0 14px;
    }

.hero-sub {
    font-size: 17px;
    margin: 0 0 30px;
    color: #e5edf7;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.photo-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 14px rgba(14,42,71,.08);
}

    .photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 10px 8px;
}

/* Rental grid */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rental-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

    .rental-card img {
        height: 150px;
        object-fit: cover;
        width: 100%;
    }

.rental-card-body {
    padding: 16px;
}

    .rental-card-body h3 {
        margin: 0 0 6px;
        font-size: 16px;
    }

    .rental-card-body p {
        font-size: 13px;
        color: var(--text-light);
        margin: 0 0 10px;
        line-height: 1.5;
    }

.rental-price {
    font-weight: 700;
    color: var(--blue-accent);
}

/* About */
.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #33455e;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    font-size: 15px;
}

    .contact-list iframe {
        border-radius: 10px;
    }

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #fff;
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
}

.footer-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        color: #a9c1e0;
    }

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #97a6bb;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* Responsive */
@media (max-width: 900px) {
    .photo-grid, .rental-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .photo-grid, .rental-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 50px 0;
    color: #fff;
    text-align: left;
    background: linear-gradient(rgba(10,25,45,.6), rgba(10,25,45,.6)), url('/images/mountains.jpg') center/cover no-repeat;
}

    .page-hero h1 {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
    }

.main-nav a.active {
    color: var(--blue-accent);
    font-weight: 700;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px; /* დაშორება სიტყვებს შორის */
}

.logo .panda {
    color: #ff1493;
    font-weight: 700;
}

.logo .ski-rental {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
}
/**/

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

    .logo img {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

.logo-text {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

    .logo-text .panda {
        display: block;
        color: #FF1493;
    }

    .logo-text .ski-rental {
        display: block;
        color: #FFD700;
    }

    .logo-text small {
        font-weight: 600;
        font-size: 10px;
        letter-spacing: 1.5px;
        color: var(--text-light);
    }


/* Language Switch */
.lang-switch {
    position: relative;
}

.lang-btn {
    background: #fff;
    border: 1px solid #d8e0ea;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
}

    .lang-btn:hover {
        border-color: var(--blue-accent);
        background: var(--bg-light);
    }

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #d8e0ea;
    border-radius: 6px;
    margin-top: 6px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

    .lang-menu.show {
        display: flex;
    }

.lang-item {
    background: none;
    border: none;
    padding: 10px 16px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

    .lang-item:hover {
        background: var(--bg-light);
    }

    .lang-item:first-child {
        border-radius: 6px 6px 0 0;
    }

    .lang-item:last-child {
        border-radius: 0 0 6px 6px;
    }


/* Weather Section */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 0 auto; /* Center the grid */
}

.weather-card {
    background: linear-gradient(135deg, #3f7fd6, #2563eb);
    color: #fff;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.weather-day {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.weather-temp {
    display: flex;
    justify-content: space-around;
    margin: 8px 0;
    font-size: 16px;
}

.temp-high {
    font-weight: 700;
}

.temp-low {
    opacity: 0.8;
}

.weather-icon {
    font-size: 32px;
    margin: 8px 0;
}

.weather-desc {
    font-size: 12px;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .weather-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Header */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
}

.main-nav {
    display: flex;
    gap: 24px;
}

    .main-nav a {
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.2s;
    }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--blue-accent);
        }

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

    .hamburger span {
        width: 24px;
        height: 3px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #e8edf3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

        .main-nav.mobile-open {
            max-height: 300px;
            padding: 16px 24px;
        }

        .main-nav a {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

            .main-nav a:last-child {
                border-bottom: none;
            }

    .logo {
        order: 1;
        flex: 1 1 100%;
    }

    .hamburger {
        order: 2;
    }

    .lang-switch {
        order: 3;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 36px !important;
        height: 36px !important;
        margin-right: 8px !important;
    }

    .logo-text {
        font-size: 14px !important;
    }
}

/* About Section Styling */
.about-intro {
    margin-bottom: 32px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 40px;
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--blue-accent);
}

.about-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 0;
}

.about-list {
    list-style-type: disc;
    margin-left: 24px;
    padding: 0;
}

    .about-list li {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-dark);
    }

.about-block-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-block {
        padding: 16px;
        margin-bottom: 24px;
    }

    .about-heading {
        font-size: 20px;
    }

    .about-list {
        margin-left: 20px;
    }

        .about-list li {
            font-size: 14px;
        }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

    /* Facebook - ლურჯი */
    .social-link:nth-child(1) {
        background: #1877F2;
    }

        .social-link:nth-child(1):hover {
            background: #0a66c2;
            transform: scale(1.1);
        }

    /* Instagram - Gradient */
    .social-link:nth-child(2) {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

        .social-link:nth-child(2):hover {
            filter: brightness(1.1);
            transform: scale(1.1);
        }

    .social-link span {
        display: block;
        font-weight: 700;
    }

    /* Facebook f */
    .social-link:nth-child(1) span {
        font-size: 24px;
    }

    /* Instagram 📷 */
    .social-link:nth-child(2) span {
        font-size: 22px;
    }

/* Footer Logo */
.footer-logo {
    display: flex;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.footer-panda {
    color: #FF1493; /* ვარდისფერი */
    font-weight: 800;
}

.footer-ski {
    color: #FFD700; /* ყვითალი */
    font-weight: 800;
}