/* ===================================
   Artistry By Amna - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --secondary: #d4af37;
    --accent: #c9a96e;
    --light: #f8f6f3;
    --soft-pink: #faf3f0;
    --text-dark: #2c2c2c;
    --text-light: #6a6a6a;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* ===================================
   Navigation
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF3F5;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    font-style: italic;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.4s ease;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.about-image {
    position: relative;
    overflow: hidden;
    /*border-radius: 2px;*/
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    /*border: 2px solid var(--secondary);*/
    z-index: -1;
}

.about-content {
    animation: fadeInUp 1s ease-out;
}

.section-label {
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ===================================
   Portfolio Section - Carousel
   =================================== */
.portfolio {
    padding: 8rem 5%;
    background: #FFF3F5;
    width: 100%;
    overflow: hidden;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 5rem;
}

.portfolio-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Portfolio Categories */
.portfolio-categories {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.category-section {
    width: 100%;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
    background: transparent;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: 70vh;
    max-height: 700px;
    min-height: 400px;
    object-fit: contain;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, transparent 100%);
    padding: 4rem 3rem 3rem;
    color: var(--light);
}

.carousel-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.carousel-caption p {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 246, 243, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    stroke: var(--light);
}

.carousel-btn svg {
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.carousel-btn-prev {
    left: 2rem;
}

.carousel-btn-next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(248, 246, 243, 0.5);
    border: 2px solid rgba(248, 246, 243, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(248, 246, 243, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 32px;
    border-radius: 6px;
}

/* Auto-play progress animation */
.indicator.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 6px;
    border: 2px solid var(--secondary);
    animation: progress 5s linear;
}

@keyframes progress {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--light);
}

.contact-item-content h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-item-content p {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 300;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-item-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}

.contact-item-content a:hover {
    color: var(--secondary);
}

/* Custom Contact Form */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--light);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236a6a6a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* Submit Button */
.submit-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    width: 100%;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.4s ease;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Mobile Form Fixes */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Specific fix for date and time inputs */
    input[type="date"],
    input[type="time"] {
        font-size: 16px !important;
        padding: 0.75rem !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
    }

    /* Ensure form container doesn't overflow */
    .form-container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .form-container h3 {
        font-size: 1.5rem;
    }

    .form-container p {
        font-size: 0.9rem;
    }

    .contact-container {
        width: 100%;
        overflow: hidden;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info p {
        font-size: 1rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-item-content {
        flex: 1;
        min-width: 0;
    }

    .contact-item-content p,
    .contact-item-content a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .form-container {
        padding: 1.25rem 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 15px;
    }

    input[type="date"],
    input[type="time"] {
        padding: 0.65rem !important;
        font-size: 15px !important;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    stroke: var(--light);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

footer .social-links {
    justify-content: center;
    margin-top: 1.5rem;
}

/* Form Container */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-container h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-container p {
    max-width: 100%;
    overflow-wrap: break-word;
}

.form-embed {
    width: 100%;
    min-height: 600px;
    border: none;
    max-width: 100%;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--primary);
    color: var(--light);
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   Scroll Animation
   =================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(248, 246, 243, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 5%;
    }

    .about-image::after {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        width: 100%;
    }

    .contact-info {
        width: 100%;
        overflow-wrap: break-word;
    }

    .contact-item-content p {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .form-container {
        padding: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-embed {
        width: 100%;
        min-height: 500px;
    }

    /* Carousel responsive adjustments */
    .portfolio-categories {
        gap: 4rem;
    }

    .category-header {
        margin-bottom: 2rem;
    }

    .carousel-slide img {
        height: 60vh;
        min-height: 350px;
        object-fit: contain;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .carousel-btn-prev {
        left: 1rem;
    }

    .carousel-btn-next {
        right: 1rem;
    }

    .carousel-caption {
        padding: 3rem 2rem 2rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero {
        padding-top: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero h1 {
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-content {
        padding: 1rem;
        width: 100%;
    }

    .about,
    .portfolio,
    .contact {
        padding: 4rem 5%;
        width: 100%;
    }

    .form-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .form-container h3 {
        font-size: 1.5rem;
    }

    .form-container p {
        font-size: 0.9rem;
    }

    .form-embed {
        width: 100%;
        min-height: 500px;
        max-width: 100%;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info p {
        font-size: 1rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-item-content {
        flex: 1;
        min-width: 0;
    }

    .contact-item-content p,
    .contact-item-content a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Carousel mobile adjustments */
    .portfolio-categories {
        gap: 3rem;
        width: 100%;
    }

    .category-header h3 {
        font-size: 1.8rem;
    }

    .category-header p {
        font-size: 0.9rem;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
    }

    .carousel-slide {
        width: 100%;
    }

    .carousel-slide img {
        height: 50vh;
        min-height: 300px;
        object-fit: contain;
        width: 100%;
        max-width: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: 0.5rem;
    }

    .carousel-btn-next {
        right: 0.5rem;
    }

    .carousel-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 1rem;
        gap: 0.6rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 28px;
    }

    .contact-container {
        width: 100%;
    }
}