/* General Reset and Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
   
}
main {
    width: 1080px;
    padding-top: 100px;
    padding-bottom: 200px;
    margin: 0 auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Neuton';
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.tbilisi1{
    width: 100%;
    height: 150px;
    aspect-ratio: 1/1;
}

.batumi{
  width: 100%;
  height: 150px;
  aspect-ratio: 1/1;
}
.svaneti{
 width: 100%;
 height: 350px;
 aspect-ratio: 1/1;
}

header {
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo{
    
    width: 240px;
    height: auto;
    left: 10px; 
    z-index: 2; 
}

nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 2px solid transparent;
    background: #f0f0f0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff6347; /* Tomato color */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff6347; /* Tomato color */
    background: #fff;
}

nav ul li a:hover::before {
    width: 100%;
    left: 0;
}

.map{
    width: 250px;
    height:auto;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: white;
    margin-bottom: 20px;
}

.hero .cta-button {
    background-color: #f76c6c;
    color: white;
    padding: 20px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.5s;
    margin-top:-20;

}

.hero .cta-button:hover {
    background-color: #e05a5a;
}

.section {
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.qvevri{
    width: 500px;
    height: auto;
}

.harvesting{
    width:500px;
    height:auto;
}

.alphabet{
    width: 250px;
    height: 350px;
}

.alphabet2{
    width: 250px;
    height:auto;
}

.alphabet3{
    width: 250px;
    height:auto;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color:rgb(83, 69, 23);
}

.city-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -10px;
}

.city-cards h3{
    color:rgb(102, 39, 39);

}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
    font-size: 16px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

footer a{
    white-space: 10px;
    border-radius: 20px;
    color: rgb(212, 12, 12);
    padding: 10px;
}

#montableau_wrapper {
    width: 80%; 
    margin-left: 10%;
    color: #b30000; /* Dark red */
 }
 
 table {
     width: 50%;
     margin: 20px auto;
     border-collapse: collapse;
     font-family: Arial, sans-serif;
     background-color: rgba(255, 235, 235, 0.9); /* Very light red/pink */
     color: rgb(68, 7, 7);
     border-radius: 10px;
     overflow: hidden;
     text-align: left;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
 }
 
 th, td {
     padding: 12px;
     border: 1px solid rgba(180, 0, 0, 0.5); /* Strong red border */
 }
 
 th {
     background-color: rgba(200, 0, 0, 0.8); /* Dark red */
     font-weight: bold;
     color: white; /* White text for contrast */
 }
 
 tr:nth-child(even) {
     background-color: rgba(255, 220, 220, 0.4); /* Soft red tone */
 }
 
 .dt-button {
     background-color: rgb(200, 0, 0);
     color: white;
     border: none;
     border-radius: 5px;
     padding: 10px 15px;
     font-size: 14px;
     cursor: pointer;
     margin: 5px;
     transition: background-color 0.3s ease;
 }
 
 .dt-button:hover {
     background-color: #7a0000; /* Darker red */
 }
 
 .dt-buttons button {
     background-color: rgb(255, 240, 240) !important; /* Light red-pink */
     border-radius: 30px !important;
 }
 
 .dt-button.buttons-print:hover {
     background-color: #990000; /* Deep red */
 }
 
 .dt-button.buttons-csv {
     background-color: #ff0000; /* Bright red */
 }
 
 .dt-button.buttons-csv:hover {
     background-color: #cc0000; /* Slightly darker red */
 }
 
 .dt-button.buttons-pdf {
     background-color: #660000; /* Deep dark red */
 }
 
 .dt-button.buttons-pdf:hover {
     background-color: #400000; /* Almost black red */
 }
 
 .home-button {
     padding: 5px;
     border-radius: 20px;
     background-color: #ffcccc; /* Soft red */
     text-decoration: none;
     color: #660000; /* Dark red */
 }
 
 #montableau_filter label input {
     border-radius: 20px;
     border: 1px solid #cc0000; /* Medium red */
     color: black;
 }
 

:root {
    --button-color: #4CAF50; 
    --border-color: #cccccc; 
    --highlight-color: #dd610f; 
    --input-focus-color: #009688; 
    --form-background: #ffffff; 
    --text-color: #333; 
    --error-color: #f44336;
    --success-color: #4caf50; 
    --border-radius: 8px; 
    --input-border-radius: 5px; 
    --font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

form {
    width: 300px;
    margin: 30px auto;
    padding: 20px; 
    background-color: var(--form-background);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    font-family: var(--font-family);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: auto;
}


form:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#en-tete {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

#en-tete div {
    width: 48%;
}


input, textarea {
    width: 100%;
    padding: 8px; 
    margin-bottom: 10px; 
    border: 1px solid var(--border-color);
    border-radius: var(--input-border-radius);
    box-sizing: border-box;
    font-size: 13px; 
    transition: border-color 0.3s ease;
    background-color: #f9f9f9; 
    color: var(--text-color);
}


input:focus, textarea:focus {
    outline: none;
    border-color: var(--input-focus-color);
    box-shadow: 0 0 5px var(--input-focus-color);
}


label {
    display: block;
    margin-bottom: 6px; 
    font-size: 13px;
    color: var(--highlight-color);
    text-transform: uppercase;
}


input[type="submit"] {
    background-color: var(--button-color);
    color: white;
    padding: 8px 0; 
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


input[type="submit"]:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}


input::placeholder, textarea::placeholder {
    color: #bbb;
    font-style: italic;
}

input[type="email"], input[type="text"] {
    height: 35px; 
}

textarea {
    height: 70px; 
    resize: none;
}


form .error-message {
    color: var(--error-color);
    font-size: 13px;
    display: none;
    margin-bottom: 10px; 
    text-align: center;
}

form .success-message {
    color: var(--success-color);
    font-size: 13px;
    display: none;
    margin-bottom: 10px; 
    text-align: center;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px; 
    color: var(--text-color);
    margin-right: 15px; 
    transition: color 0.3s ease;
}

input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="radio"]:checked + label:before {
    background-color: var(--button-color);
    border-color: var(--button-color);
}

input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

input[type="radio"] + label:hover {
    color: var(--highlight-color);
}

input[type="radio"]:focus + label:before {
    box-shadow: 0 0 5px var(--input-focus-color);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

#h3text {
    display:flex;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 10px;
    height: auto;
    color:rgb(107, 96, 96);
}



.image-container {
    width: 100%; 
    padding: 0; 
    box-sizing: border-box; 
    background-color: rgb(255, 255, 255);
    margin-top: -15px;
}


.slider-wrapper {
    position: relative;
    width: 100%; 
}


.slider {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    -webkit-overflow-scrolling: touch;
    width: 100%; 
}


.slider::-webkit-scrollbar {
    display: none;
}

.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    pointer-events: none;
}

/* For .slider-nav */
.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a{
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: whitesmoke;
    opacity: 0.5;
    transition: opacity ease 250ms;
}

.slider-nav a:hover{
    opacity: 1;
}

.slider-nav a.active {
    opacity: 1;
    background-color: whitesmoke;
}

.video-container {
    display: flex; 
    align-items: center;  
    justify-content: center;  
    gap: 20px; 
    width: 100%; 
    margin: 0 auto;  
}


.perectus {
    flex: 1; 
    max-width: 600px;  
    padding: 20px; 
    text-align: justify;
    margin: 0 auto;  
}

.perectus p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

iframe {
    width: 65%;  
    max-width: 600px; 
    height: 340px; 
    margin: 0 auto;
    border: none;
    border-radius: 15px;
}

#contact-container {
    display: flex;
    align-items: flex-start; 
    margin-left: 10px; 
    padding-right: 10px; 
    max-width: 100%;
}

.contact-element {
    display: flex;
    justify-content: center;
    flex: 1;
    width: 33.33%;
}

.deda-left {
    width: auto;
    transform: scaleX(-1);
}

.deda-rigth
{
    width: auto;
}

form {
    width: 300px; 
    padding: 20px;
    background-color: transparent; 
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    font-family: var(--font-family);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.success {
    color: green;
    font-weight: bold;
}
.error {
    color: red;
    font-weight: bold;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    filter: grayscale(50%);
}

.gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}


#wine p {
    max-width: 800px; 
    margin: 0 auto; 
    line-height: 1.6; 
    font-size: 1rem; 
 }

 #alphabet p {
    max-width: 800px; 
    margin: 0 auto; 
    line-height: 1.6; 
    font-size: 1rem; 
 }

 #message-sent-status p {
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
}

.success {
    background-color: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb;
}


.container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.card {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* More depth */
}

.card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.card h4 {
    margin: 10px 0;
    font-size: 1em;
    color: #6a0572; 
}

.card p {
    color: #555;
    font-size: 0.95em;
    flex-grow: 1;
}

.card a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #6a0572, #ff0000);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    margin-top: auto;
    text-align: center;
}

.card a:hover {
    transform: scale(1.1);
}

.documents {
    padding: 30px 10px;
    text-align: center;
    background: linear-gradient(135deg, #6a0572, #ff002b); 
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    margin: 20px auto;
    max-width: 90%;
}


.documents-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}


.document-link {
    background: white; 
    color: #6a0572;  
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #6a0572;
}

.document-link:hover {
    background: #6a0572;
    color: white;
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 3px 5px 15px rgba(255, 0, 43, 0.5);
}

.argonav-title {
    font-size: 2rem; 
    font-family: 'Bungee', sans-serif; 
    text-align: center;
    color: #fff; 
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #800080, #ff0000);
    padding: 8px 0;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(128, 0, 128, 0.7), 0 0 20px rgba(255, 0, 0, 0.7);
    }
    to {
        text-shadow: 0 0 20px rgba(128, 0, 128, 0.9), 0 0 30px rgba(255, 0, 0, 0.9);
    }
}

/* Crédit */

.title {
    text-align: center;
    font-family: 'Neuton';
    font-size: 2.5rem;
    color: #2a3d56;
    margin-top: 50px;
}

.description {
    font-family: Arial, sans-serif; 
    text-align: center;
    font-size: 1.2rem;
    margin: 20px auto;
    width: 80%;
    color: #555;
}

.credits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    width: 80%;
    max-width: 800px;
}

.credit-item {
    text-align: center;
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.credit-link {
    text-decoration: none;
    color: rgb(200, 0, 0);
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.credit-link:hover {
    color: rgb(122, 0, 0);
}

.argonav{
    width: 100px;
    height: auto;
}


.argonav-p {
    font-size: 12px; 
    color: white;
    display: block; 
    margin-top: 8px; 
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
