:root {
    --gold:#c6a76d;
    --dark:#101010;
    --light:#ffffff;
    --bg:#f7f4ef;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x:hidden;
}

body {
    font-family:'Inter', sans-serif;
    background: var(--bg);
    color: #222;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family:'Playfair Display', serif;
}

/* ==========================================
    HEADER + NAV
========================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7%;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(7px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a, .logo a:visited, .logo a:active, .logo a:hover{
    color:#fff;
    text-decoration:none;
}

/* NAVBAR */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform .3s ease, color .3s ease;
}

.desktop-nav a:hover {
    transform: translateY(-3px);
}

.desktop-nav a:not(.bookings-link)::after {
    content:'';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-50%) scale(0);
    transition: .3s ease;
}

.desktop-nav a:not(.bookings-link):hover::after {
    transform: translateX(-50%) scale(1);
}

.bookings-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border: 1px solid var(--gold);
    border-radius:999px;
    background: rgba(198,167,109,.08);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.bookings-link::before{
    content:'✦';
    color:var(--gold);
    font-size:.75rem;
    margin-right:8px;
}

.bookings-link:hover{
    background: rgba(198,167,109,.18);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(198,167,109,.2);
}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

/* TOP */

.hamburger span:nth-child(1) {
    top: 0;
}

/* MID */

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

/* BOT */

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* ACTIVE */

.hamburger.active span:nth-child(1) {

    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px,90vw);
    height: 100vh;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 3rem;
    gap: 2rem;
    transition: .3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

}

.mobile-menu a {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: .3s ease;
}

.mobile-menu a::before {
    content:'';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 14px;
    flex-shrink: 0;
}

.mobile-menu a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.mobile-menu .bookings-link {
    padding: 12px 24px;
    border: 1px solid rgba(198,167,109,.4);
    border-radius: 999px;
    background: rgba(198,167,109,.08);
}

@media(max-width:768px) {

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

}

/* ==========================================
    HERO
========================================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(3rem,6vw,5.5rem);
    max-width: 900px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 16px 40px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    background: var(--gold);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0,0,0,.3);
}

.hero-btn:active {
    transform: translateY(-1px);
}

/* ==========================================
   TOURS
========================================== */

.tours {
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: clamp(2rem,4vw,3.5rem);
}

/* GRID */

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 2rem;
}

/* CARD */

.tour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* cinematic overlay */

.tour-card::before {
    content:'';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%);
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

/* IMAGE */

.tour-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .6s ease;
}

.tour-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.6rem;
    margin-bottom: .8rem;
}

.tour-content p {
    color: #666;
    line-height: 1.5;
}

/* TAG */

.tour-tag {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(198,167,109,.12);
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
}

/* CTA */

.tour-footer {
    margin-top: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    transition: .3s ease;
}

.tour-card:hover .tour-footer {
    letter-spacing: .5px;
}

/* MOBILE */

@media (max-width:768px) {

    .tours {
        padding: 90px 6%;
    }

    .tour-grid {
        gap: 1.5rem;
    }

    .tour-card img {
        height: 240px;
    }

}

/* ==========================================
   ABOUT
========================================== */

.about {
    padding: 120px 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* IMAGE */

.about-image {
    overflow: hidden;
    border-radius: 32px;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.about-content h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.feature-box {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-number {
    display: block;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.feature-label {
    color: #666;
    font-size: .9rem;
}

@media (max-width:768px) {

    .about {
        padding: 90px 6%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   CONTACT
========================================== */

.contact {
    padding: 120px 8%;
}

/* HEADER */

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.contact-header h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    margin-bottom: 1.5rem;
}

.contact-header p {
    color: #666;
    line-height: 1.5;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    align-items: start;
}

/* INFO PANEL */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-label {
    display: block;
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.info-card a {
    color: #222;
    text-decoration: none;
}

.info-card a:hover {
    color: var(--gold);
}

/* FORM BOX */

.contact-form-box {
    background: #fff;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 18px;
    background: #f5f5f5;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(198,167,109,.3);
}

/* BUTTON */

.contact-btn {
    border: none;
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

@media (max-width:768px) {

    .contact {
        padding: 90px 6%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

}

/* ==========================================
   FOOTER
========================================== */

footer {
    width: 100%;
    margin-top: 2rem;
    padding: 5rem 8% 5rem;
    background: #111;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* FOOTER LOGO */

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: .3s ease;
}

.footer-logo:hover {
    color: var(--gold);
}

/* TAGLINE */

.footer-tagline {
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

/* NAV */

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.footer-nav a::after {
    content:'';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-50%) scale(0);
    transition: .3s ease;
}

.footer-nav a:hover::after {
    transform: translateX(-50%) scale(1);
}

/* EMAIL */

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
}

.footer-contact a:hover {
    opacity: .8;
}

/* DIVIDER */

.footer-divider {
    width: 120px;
    height: 1px;
    background: rgba(198,167,109,.4);
    margin: 2rem auto;
}

/* COPYRIGHT */

.footer-copy {
    color: #888;
    font-size: .9rem;
}

.adminlink,
.adminlink:link,
.adminlink:visited,
.adminlink:hover,
.adminlink:active {
    color: inherit;
    text-decoration: none;
    font: inherit;
}

/* MOBILE */

@media(max-width:768px) {

    footer {
        margin-top: 90px;
        padding: 60px 6% 30px;
    }

}

/* ================================================================================================

    BOOKING PAGE

=============================================================================================== */


.booking-section {
    padding: 5rem 8% 5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 12px 20px;
    margin-bottom: 2rem;
    border-radius: 999px;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0,0,0,.12);
}

/* HEADER */

.section-title h1 {
    font-size: clamp(2.5rem,5vw,4.5rem);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    line-height: 1.5;
}

.section-subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .85rem;
    margin-bottom: 1rem;
}

/* GRID */

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    min-width: 0;
}

.booking-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.booking-card h2 {
    margin-bottom: 2rem;
}

/* Reservation card */

.reservation-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    position: sticky;
    top: 120px;
}

.reservation-card h2 {
    margin-bottom: 1rem;
}

.reservation-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.booking-card,
.reservation-card {
    min-width: 0;
}

/* Inputs */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: .6rem;
    font-weight: 600;
}

select, input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 18px;
    background: #f5f5f5;
    font-size: 1rem;
    font-family: inherit;
    margin: 1rem 0;
}

select:focus, input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(198,167,109,.3);
}

/* Calendars */

.calendar-container {
    border: none;
    border-radius: 24px;
    padding: 1rem;
    background: #f8f8f8;
}

/* CALENDAR HEADER */

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.calendar-header button:hover {
    transform: translateY(-3px);
}

/* CALENDAR GRID */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    text-align: center;
}

/* DAY NAMES */

.day-name {
    font-size: .8rem;
    font-weight: 600;
    color: #888;
    padding: .5rem 0;
}

.day-name:nth-child(6), .day-name:nth-child(7) {
    color: #c68a8a;
}

/* DAYS */

.day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s ease;
}

.day.empty {
    visibility: hidden;
}

.day:hover:not(.empty):not(.past) {
    background: rgba(198,167,109,.15);
}

.day.selected {
    background: var(--gold) !important;
    color: #fff;
}

.day.past {
    color: #ccc;
    cursor: not-allowed;
}

/* TOOLTIP */

.day[title] {
    position: relative;
}

.day[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .75rem;
    white-space: nowrap;
    z-index: 10;
}

/* SELECTED DATE */

#selected-date-display {
    color: var(--gold);
    font-weight: 600;
}

/* Days */

.day:hover:not(.empty) {
    background: rgba(198,167,109,.15);
}

.day.selected {
    background: var(--gold) !important;
    color: #fff;
}

/* Buttons */

.btn-submit {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.booking-disclaimer {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #777;
    text-align: left;
}

/* Mobile*/

@media (max-width:992px) {

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .reservation-card {
        position: static;
    }

}

@media (max-width:768px) {

    .booking-section {
        padding: 120px 6% 90px;
    }

}

/* RESERVATION RESULT */

.reservation-inputs {
    margin: 1rem 0
}

#reservation-result {
    margin-top: 1.5rem;
}

#reservation-result {
    display: block;
}


.loading {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(198,167,109,.08);
    color: var(--gold);
    text-align: center;
}

/* RESERVATION RESULTS */

.reservation-item {
    padding: 1.5rem;
    border-radius: 18px;
    background: #f8f8f8;
    border-left: 4px solid var(--gold);
    margin-top: 1rem;
}

.reservation-item h3 {
    margin: .5rem 0 1rem;
}

.reservation-item p {
    margin: .35rem 0;
    color: #666;
}

.reservation-status.confirmed {
    background: rgba(34,197,94,.12);
    color:rgb(34,197,94);

}

.reservation-status.pending {

    background: rgba(245,158,11,.12);

    color: rgb(245,158,11);

}

.reservation-status.cancelled {
    background: rgba(239,68,68,.12);
    color: rgb(239,68,68);
}

.reservation-error { /* ATRAKNI */
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(239,68,68,.08);
    color: rgb(185,28,28);
}

/* ==========================================
BOOKING SUCCESS
========================================== */

.booking-success-wrapper {
    min-height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.booking-success-section {
    width: 100%;
}

.booking-success-card {
    max-width: 720px;
    margin: auto;
    padding: 55px 45px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.booking-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.booking-success-card h1 {
    margin: 15px 0 25px;
    font-size: clamp(2rem,4vw,3rem);
}

.booking-success-card p {
    max-width: 600px;
    margin: 0 auto 18px;
    line-height: 1.5;
    color: #666;
}

.booking-success-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.booking-primary-btn, .booking-secondary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 56px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.booking-primary-btn {
    background: var(--gold);
    color: #fff;
}

.booking-primary-btn:hover {
    transform: translateY(-3px);
}

.booking-secondary-btn {
    border:1px solid var(--gold);
    color: #222;
    background: #fff;
}

.booking-secondary-btn:hover {
    background: rgba(198,167,109,.12);
    transform: translateY(-3px);

}

/* MOBILE */

@media(max-width:768px) {

    .booking-success-card {
        padding:40px 25px;
    }

    .booking-success-card h1 {
        font-size: 1.8rem;
    }

    .booking-success-buttons {
        flex-direction: column;
    }

    .booking-primary-btn, .booking-secondary-btn {
        width: 100%;
        max-width: 320px;
    }

}

/* ==========================================
CANCELLATION SUCCESS
========================================== */

.cancel-success-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.cancel-success-section {
    width:100%;
}

.cancel-success-card {
    max-width: 650px;
    margin: auto;
    padding: 55px 45px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.cancel-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(34,197,94,.12);
    color: rgb(34,197,94);
    font-size: 42px;
    font-weight: 700;
}

.cancel-success-card h1 {
    margin: 15px 0 25px;
    font-size: clamp(2rem,4vw,2.8rem);
}

.cancel-success-card p {
    max-width: 540px;
    margin: 0 auto 18px;
    line-height: 1.5;
    color: #666;
}

.cancel-success-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 280px;
    height: 56px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.cancel-success-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:768px) {

    .cancel-success-card {
        padding: 40px 25px;
    }

    .cancel-success-card h1 {
        font-size: 1.8rem;
    }

    .cancel-success-btn {
        width: 100%;
        max-width: 320px;
    }

}