/* Base Styles and Variables */
:root {
    --primary-color: #1e90ff;
    --secondary-color: #0a2463;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #0a2463;
    --light-bg: #f8f9fa;
    --gray-bg: #f0f2f5;
    --border-color: #e1e4e8;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-spacing) 0;
}

/* Language Switcher */
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

.current-lang {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.current-lang:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.lang-flag {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
    margin-top: 8px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option:hover {
    background-color: var(--light-bg);
}

/* Header and Navigation */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../assets/mercan.son.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 1;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 0.9rem;
    letter-spacing: 5px;
    transform: translateY(-5px);
}

.menu-toggle {
    position: fixed;
    top: 30px;
    right: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--light-text);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.menu-open .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-open .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    color: var(--light-text);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.menu-open .main-nav {
    right: 0;
}

.nav-links {
    margin-bottom: 50px;
}

.nav-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.nav-item a {
    font-size: 1.8rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    transition: transform 0.4s;
}

.nav-item a:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.highlight a {
    color: var(--accent-color);
}

.contact-info {
    margin-top: auto;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 500;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.primary-btn:hover {
    background-color: #0078e7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.white-btn {
    background-color: white;
    color: var(--secondary-color);
}

.white-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Section Styles */
.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* About Preview */
.about-preview {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-image img {
    transition: transform 0.5s;
}

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

/* Rooms Preview */
.rooms-preview {
    background-color: white;
}

.room-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.room-card {
    width: 100%;
    max-width: 370px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-info {
    padding: 20px;
    background: white;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.room-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.room-features span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.room-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Gallery Preview */
.gallery-preview {
    background-color: var(--light-bg);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Preview */
.contact-preview {
    background-color: white;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-preview, .quick-contact {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/mercanyemekhanev1-small.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 30px;
}

.newsletter form {
    display: flex;
    position: relative;
    margin-top: 15px;
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    aspect-ratio: 1/1;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #0078e7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

.whatsapp-floating a:hover {
    transform: scale(1.1);
}

.whatsapp-floating i {
    font-size: 2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.reveal-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: text-reveal 1.5s ease forwards;
}

.delay-1::after {
    animation-delay: 0.5s;
}

.delay-2::after {
    animation-delay: 1s;
}

.delay-3::after {
    animation-delay: 1.5s;
}

@keyframes text-reveal {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .room-carousel {
        gap: 20px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 20px;
    }

    .language-switch {
        top: 10px;
        right: 15px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtext {
        font-size: 0.7rem;
    }
    
    .menu-toggle {
        top: 20px;
        right: 70px;
    }
    
    .main-nav {
        padding: 30px;
    }
    
    .nav-item a {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        justify-content: flex-start;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .room-card {
        max-width: 100%;
    }
    
    .room-image {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
} 
.rooms-description-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,144,255,0.09);
    padding: 48px 40px;
    margin: 48px auto 48px auto;
    max-width: 2000px;
    position: relative;
    z-index: 2;
}

.rooms-description-card .rooms-description-text {
    flex: 1 1 0;
    font-size: 1.08rem;
    color: #222;
}

.rooms-description-card .rooms-description-img {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30,144,255,0.10);
    background: #f8f9fa;
}

.rooms-description-card .rooms-description-img img {
    max-width: 740px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s;
}

.rooms-description-card .rooms-description-img:hover img {
    transform: scale(1.04);
}

.rooms-description-card .rooms-description-text p {
    margin-bottom: 18px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .rooms-description-card {
        flex-direction: column;
        padding: 28px 10px;
        gap: 24px;
    }
    .rooms-description-card .rooms-description-img img {
        max-width: 100%;
    }
}
.booking-search {
    border-radius: 18px;
    box-shadow: none; /* Gölgeyi kaldırdık */
    padding: 24px 32px;
    max-width: 700px;
    margin: 32px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Arka planı kaldırdık */
}

.booking-fields {
    display: flex;
    gap: 24px;
    align-items: center;
}

.booking-field label {
    display: block;
    font-size: 0.95rem;
    color: #fff; /* Beyaz metin */
    margin-bottom: 6px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(30,144,255,0.25); /* Hafif mavi gölge */
}

/* Sadece açılır menüye özel stil (bazı tarayıcılarda çalışır) */
.booking-field select:focus {
    outline: 2px solid #1e90ff;
    background: #2563eb;
    color: #fff;
}

.booking-field input,
.booking-field select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #fff; /* Beyaz kenarlık */
    font-size: 1rem;
    width: 140px;
    background: rgba(30,144,255,0.10); /* Hafif mavi şeffaf arka plan */
    color: #fff; /* Beyaz metin */
    box-shadow: none;
}

.booking-field input::placeholder {
    color: #e0eafc; /* Açık mavi placeholder */
}

.booking-btn {
    background: #1e90ff;
    color: #fff;
    border: none;
    margin-top: 25px;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(30,144,255,0.15);
}

.booking-btn:hover {
    background: #2563eb;
}

/* Responsive */
@media (max-width: 700px) {
    .booking-fields {
        flex-direction: column;
        gap: 12px;
    }
    .booking-search {
        padding: 16px 8px;
    }
}
@media (max-width: 768px) {
    .main-nav {
        padding: 30px 15px 30px 25px; /* sağdan ve soldan padding azaltıldı */
        width: 90vw; /* menü genişliği ekranın %90'ı kadar */
        max-width: 350px; /* maksimum genişlik */
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 20px 8px 20px 15px; /* sağdan ve soldan padding daha da azaltıldı */
        width: 95vw;
        max-width: 320px;
    }
}