﻿:root {
    --global-color: #cb9600db;
}
html {
    scroll-behavior: smooth;
}
.title-container {
    text-align: center;
    background-color: var(--global-color);
}

.offer-title {
    font-size: xx-large;
    color: white;
    margin: 0;
}

.tourism-container {
    width: 100%;
    padding: 200px 20px; /* Adjusted padding for mobile */
    background-color: #f5f5f5;
    text-align: center;
    background-image: url('../img/georgia/georgia1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto;
}

.tourism-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 100px; /* Adjusted padding */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section-heading h3 {
    font-size: 1.5em; /* Adjusted font size for mobile */
    margin-bottom: 10px;
    color: #333;
}

.section-heading p {
    font-size: 1em; /* Adjusted font size for mobile */
    margin-bottom: 20px;
    color: #777;
}

.tourism-navigation {
    display: flex;
    justify-content: center;
    gap: 10px; /* Reduced gap for mobile */
    flex-wrap: wrap; /* Wrap items on smaller screens */
    padding-top: 10px;
}

.tourism-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #cb9600db;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .tourism-link:hover {
        background-color: #ffcc00;
        text-decoration: none;
    }

.tourism-icon {
    margin-right: 8px; /* Reduced margin for mobile */
    font-size: 1.2em; /* Adjusted font size for mobile */
}

.head-gergia {
    color: #ffcc00 !important;
    font-size: 32px !important; /* Adjusted font size for mobile */
    font-weight: 700;
    padding-bottom: 10px;
}

.contant-gergia {
    color: white !important;
    font-size: 18px !important;
}

.tourism-section {
    padding: 1rem; /* Adjusted padding for mobile */
}

.section-title {
    margin-bottom: 1.8rem;
    font-size: 2rem; /* Adjusted font size for mobile */
    color: #cb9600db;
    font-weight:600
}

.tourism-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.tourism-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    flex: 1 1 calc(33.333% - 1rem);
    box-sizing: border-box;
}

.tourism-image {
    width: 100%;
    height: 250px; /* Adjust the height as needed */
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tourism-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the container */
        transition: transform 0.3s ease-in-out;
    }

        .tourism-image img:hover {
            transform: scale(1.05);
        }
.tourism-title {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #333;
}

/* Media Queries for Responsive Design */

@media (max-width: 768px) {
    .offer-title {
        font-size: large; /* Adjust font size for tablets and mobile */
    }

    .tourism-container {
        padding: 80px 10px; /* Adjust padding for smaller screens */
    }

    .tourism-overlay {
        padding: 30px; /* Adjust padding for smaller screens */
    }

    .section-heading h3 {
        font-size: 1.2em;
    }

    .section-heading p {
        font-size: 0.9em;
    }

    .tourism-navigation {
        gap: 8px;
    }

    .tourism-link {
        padding: 6px 10px;
    }

    .tourism-icon {
        font-size: 1em;
    }

    .head-gergia {
        font-size: 20px !important;
    }

    .tourism-section {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .tourism-card {
        flex: 1 1 calc(50% - 1rem); /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .offer-title {
        font-size: medium; /* Further adjust font size for small screens */
    }

    .tourism-container {
        padding: 200px 10px; /* Adjust padding for very small screens */
    }

    .tourism-overlay {
        padding: 50px; /* Adjust padding for very small screens */
    }

    .section-heading h3 {
        font-size: 1em;
    }

    .section-heading p {
        font-size: 0.8em;
    }

    .tourism-navigation {
        gap: 5px;
    }

    .tourism-link {
        padding: 5px 8px;
    }

    .tourism-icon {
        font-size: 0.9em;
    }

    .head-gergia {
        font-size: 18px !important;
    }
    .contant-gergia {
        font-size: 12px !important;
    }

    .tourism-section {
        padding: 0.5rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .tourism-card {
        flex: 1 1 calc(100% - 1rem); /* 1 card per row on very small screens */
    }
}
/* CSS */
.scroll-to-top-btn {
    font-size: 24px; /* Adjust font size as needed */
    line-height: 1; /* Ensure text is centered */
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box;
    text-decoration: none !important;
    user-select: none;
    outline: 0;
    background-color: var(--global-color);
    width: 60px; /* Set width */
    height: 60px; /* Set height */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center; /* Center icon horizontally */
    position: fixed;
    right: 20px;
    bottom: 100px;
    border: 1px solid var(--global-color);
    color: white;
    z-index: 100;
    text-align: center;
    font-size: 1.5rem; /* Adjust font size for responsiveness */
    transition: background-color 0.3s ease;
}


    .scroll-to-top-btn:hover {
        background-color: #a87c00; /* Darker shade on hover */
    }

    .scroll-to-top-btn:active {
        transform: scale(0.95); /* Slightly shrink on click */
    }
