/* ===== style.css - Ahalepola Weddings ===== */
/* Brand Color Palette - Sri Lankan Traditional Wedding Aesthetics */
:root {
    --kandyan-red: #9e2a2b;
    --sacred-gold: #d4af37;
    --sapphire-night: #1e3d58;
    --ivory-glow: #fef9e7;
    --patina-bronze: #2e1b0e;
    --pure-white: #ffffff;
    --soft-sand: #f8f4e9;
    --charcoal-elegance: #2c2c2c;
    --gold-gradient: linear-gradient(145deg, var(--sacred-gold), #b8860b);
    --red-gradient: linear-gradient(145deg, var(--kandyan-red), #7a1f1f);
    --overlay-dark: rgba(46, 27, 14, 0.7);
    --overlay-gold: rgba(212, 175, 55, 0.85);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-elegance);
    background-color: var(--ivory-glow);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Typography & Utility Classes ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-tag {
    color: var(--kandyan-red);
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-header h2 {
    font-size: 54px;
    color: var(--sapphire-night);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.section-header p {
    font-size: 18px;
    color: var(--patina-bronze);
    opacity: 0.8;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--patina-bronze);
    font-weight: 700;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.45);
    background: #e6c200;
    color: var(--patina-bronze);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--sacred-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--sacred-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--sapphire-night);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--kandyan-red);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: var(--kandyan-red);
    color: var(--pure-white);
}

/* ===== Header/Navbar Styles ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(254, 249, 231, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(254, 249, 231, 0.98);
    box-shadow: 0 8px 32px rgba(46, 27, 14, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 32px;
    font-weight: 800;
    color: var(--kandyan-red);
    letter-spacing: 4px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    position: relative;
}

.logo-main::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--sapphire-night);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--patina-bronze);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--red-gradient);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--kandyan-red);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    background: var(--red-gradient);
    color: var(--pure-white) !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(158, 42, 43, 0.3);
}

.nav-cta::before {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(158, 42, 43, 0.4);
    color: var(--pure-white) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--kandyan-red);
    cursor: pointer;
}

/* ===== Hero Slider ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 1.5s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, 
        rgba(46, 27, 14, 0.85) 0%, 
        rgba(30, 61, 88, 0.65) 50%, 
        rgba(158, 42, 43, 0.45) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 10%;
    color: var(--pure-white);
    animation: fadeInUp 1.2s ease;
}

.slide-subtitle {
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--sacred-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-subtitle span {
    width: 60px;
    height: 1.5px;
    background: var(--gold-gradient);
    display: inline-block;
}

.slide-content h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.4s;
}

.slider-dot.active {
    background: var(--sacred-gold);
    width: 90px;
}

.rating-float {
    position: absolute;
    bottom: 50px;
    left: 10%;
    z-index: 20;
    background: rgba(254, 249, 231, 0.95);
    backdrop-filter: blur(8px);
    padding: 18px 32px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stars {
    color: var(--sacred-gold);
    font-size: 20px;
    letter-spacing: 6px;
}

.rating-text {
    font-weight: 700;
    color: var(--sapphire-night);
    font-size: 16px;
}

.rating-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--kandyan-red);
    font-family: 'Cormorant Garamond', serif;
}

/* ===== Services Section - Card Background Images ===== */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ivory-glow) 0%, var(--soft-sand) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--pure-white);
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -10px rgba(46, 27, 14, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.15;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--red-gradient);
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px -10px rgba(158, 42, 43, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, rgba(158,42,43,0.08), rgba(212,175,55,0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 42px;
    color: var(--kandyan-red);
    transition: 0.4s;
    position: relative;
    z-index: 3;
}

.service-card:hover .service-icon {
    background: var(--red-gradient);
    color: var(--pure-white);
    transform: scale(1.1);
    border-radius: 15px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--sapphire-night);
    position: relative;
    z-index: 3;
}

.service-card p {
    color: var(--charcoal-elegance);
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

/* Service Card Background Images */
.service-card-1::before {
    background-image: url('../assets/images/service-poruwa.jpg');
}

.service-card-2::before {
    background-image: url('../assets/images/service-nilame.jpg');
}

.service-card-3::before {
    background-image: url('../assets/images/service-planning.jpg');
}

.service-card-4::before {
    background-image: url('../assets/images/service-styling.jpg');
}

.service-card-5::before {
    background-image: url('../assets/images/service-blessing.jpg');
}

.service-card-6::before {
    background-image: url('../assets/images/service-stylist.jpg');
}

/* ===== About Us Section ===== */
.about {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(30,61,88,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 1.2s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--red-gradient);
    color: var(--pure-white);
    padding: 25px;
    border-radius: 20px;
    font-size: 48px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    box-shadow: 0 15px 35px rgba(158,42,43,0.4);
}

.about-experience span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.about-content h2 {
    font-size: 48px;
    color: var(--sapphire-night);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--charcoal-elegance);
    opacity: 0.85;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--kandyan-red);
    margin-top: 30px;
    position: relative;
    padding-top: 30px;
}

.about-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--kandyan-red);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--sapphire-night);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== Gallery Section ===== */
.gallery-showcase {
    padding: 120px 0;
    background: var(--sapphire-night);
    position: relative;
    color: var(--pure-white);
}

.gallery-showcase .section-header h2,
.gallery-showcase .section-header p {
    color: var(--pure-white);
}

.gallery-showcase .section-tag {
    color: var(--sacred-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(158,42,43,0.9), rgba(212,175,55,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s;
    color: var(--pure-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-category {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

/* ===== Legacy Banner ===== */
.legacy-banner {
    background: var(--sapphire-night);
    padding: 30px 0;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.legacy-banner::before {
    content: '⚘';
    position: absolute;
    right: 5%;
    top: -20px;
    font-size: 140px;
    opacity: 0.05;
    color: var(--sacred-gold);
    transform: rotate(15deg);
}

.legacy-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legacy-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legacy-icon {
    font-size: 48px;
    color: var(--sacred-gold);
}

.legacy-info h4 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.legacy-info p {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1.5px;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: var(--soft-sand);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(158,42,43,0.08);
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: serif;
    color: rgba(158,42,43,0.1);
    line-height: 1;
}

.testimonial-rating {
    color: var(--sacred-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--charcoal-elegance);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pure-white);
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--sapphire-night);
}

/* ===== Contact Section ===== */
.contact-premium {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--ivory-glow), var(--pure-white));
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-card {
    background: var(--sapphire-night);
    padding: 60px;
    border-radius: 40px;
    color: var(--pure-white);
    box-shadow: 0 40px 70px rgba(30,61,88,0.25);
}

.contact-card h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--sacred-gold);
}

.contact-details {
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(212,175,55,0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--sacred-gold);
}

.contact-map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    height: 450px;
}

/* ===== Footer Styles ===== */
.footer-luxury {
    background: var(--patina-bronze);
    color: var(--pure-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sacred-gold);
    margin-bottom: 20px;
}

.footer-logo-sub {
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--sacred-gold);
    color: var(--patina-bronze);
    transform: translateY(-5px);
}

.footer-heading {
    color: var(--sacred-gold);
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--sacred-gold);
    padding-left: 5px;
}

.footer-contact p {
    opacity: 0.7;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .section-header h2 {
        font-size: 44px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content h2 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid,
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-content h2 {
        font-size: 42px;
    }
    
    .legacy-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .rating-float {
        flex-direction: column;
        text-align: center;
        left: 20px;
        right: 20px;
        width: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .slider-controls {
        right: 5%;
    }
    
    .rating-float {
        padding: 15px 20px;
    }
}