/* Company Name - Homepage */
.hero-company-name {
    font-family: "Petit Formal Script", cursive;
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #032445;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Homepage - Hero buttons */
.btn-gold{
    background:#D4AF37;
    color:#032445;
    border:none;
    font-weight:600;
    border-radius:50px;
    transition:.25s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .7s;
}

.btn-gold:hover{
    background:#e3c764;
    color:#032445;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.btn-outline-light{
    border-radius:50px;
    padding-left:2rem;
    padding-right:2rem;
    transition:.25s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .7s;
}

.btn-outline-light:hover{
    transform:translateY(-2px);
}

/* Homepage - Hero buttons mobile */
@media (max-width:576px){

    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:300px;
    }

    .hero-buttons .btn{
        width:100%;
    }

}

/* Titles - Destination Hero Template */
.hero-pretitle {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .3s;
}

/* hero divider */
.hero-divider {
    width: 400px;
    height: 50px;
    margin-top: -0.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .5s;
}

@media (max-width: 576px) {
    .hero-divider {
        width: 300px;
        height: 30px;
        margin-top: -0.25rem;
    }
}

/* Card Panel */
.card-panel {
    transform: translateY(-9%);
    z-index: 1;
}

@media (min-width: 576px) {
    .card-panel {
        transform: translateY(-10%);
    }
}

@media (min-width: 1200px) {
    .card-panel {
        transform: translateY(-20%);
    }
}

@media (max-width: 575.98px) {
    #gridcards {
        padding-inline: 1rem;
    }
}

/* Offcanvas theme */
.custom-offcanvas {
    background-color: #032445;
    color: white;

    --bs-offcanvas-width: min(350px, 85vw);
}

.custom-offcanvas .nav-link {
    color: white;
}

.custom-offcanvas .nav-link:hover {
    color: #D4AF37;
}

/* Mobile / Offcanvas only */
@media (max-width: 991.98px) {

    .custom-offcanvas .dropdown-menu {
        background-color: #032445;
        border: none;
    }

    .custom-offcanvas .dropdown-item {
        color: white;
    }

    .custom-offcanvas .dropdown-item:hover {
        background-color: #032445;
        color: #D4AF37;
    }

    .custom-offcanvas .dropdown-item:active,
    .custom-offcanvas .dropdown-item.active {
        color: white !important;
        background-color: #032445;
    }

    .custom-offcanvas .nav-link.show,
    .custom-offcanvas .dropdown-toggle.show {
        color: white !important;
    }
}

/* Desktop navbar */
/*
.navbar {
    background: rgba(255,255,255,0.93) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}
*/
.navbar {
    background:rgba(255,255,255,.95) !important;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    transition: background .3s ease;
}

@media (min-width: 992px) {

    .custom-offcanvas .nav-link,
    .custom-offcanvas .dropdown-toggle {
        color: rgba(0,0,0,.8);
    }

    .custom-offcanvas .nav-link.show,
    .custom-offcanvas .dropdown-toggle.show {
        color: rgba(0,0,0,.8) !important;
    }
}

/* Footer setup */
.footer-custom {
    background-color: #032445;
    border-top: 4px solid #D4AF37;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #D4AF37; /* gold */
}

.footer-icon {
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icon:hover {
    color: #D4AF37;
    transform: scale(1.15);
}


/* Collapse/Accordian */
.collapse-section {
    border-bottom: 1px solid #d6d6d6;
    padding: 1.5rem 0;
}

.collapse-toggle {
    width: 100%;
    background: none;
    border: none;

    display: flex;
    align-items: center;

    text-align: left;

    font-size: 1.75rem;
    font-family: Georgia, serif;

    color: #032445;

    cursor: pointer;
}

.accordion-icon {
    font-size: 1.5rem;
    margin-right: 1rem;

    color: #032445;
}

.collapse-content {
    padding-left: 3rem;
    padding-top: 2rem;
}

.collapse-content h4 {
    color: #032445;
    margin-bottom: 1rem;
}

.collapse-content h5 {
    color: #032445;
    margin-bottom: 1rem;
}

.collapse-content h6 {
    color: #032445;
    margin-bottom: 1rem;
}

.collapse-content img {
    margin: 1.5rem 0;
}


/*
.polaroid {
    background: white;
    padding: 10px 10px 50px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);

    transform: translateY(4rem) rotate(var(--rotate, 0deg));
    transform-origin: center;
}
    */

.polaroid {
    position: absolute;   /* important: removes from document flow */
    
    background: white;
    padding: 10px 10px 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);

    transform: rotate(var(--rotate, 0deg));
    transform-origin: center;

    /* width: 300px; */
}

.polaroid-stage {
    position: relative;
    height: 600px; 
    overflow: hidden;
}

@media (max-width:576px){

    .polaroid-stage{
        height:250px;
        overflow: visible;
    }

}

.photo {
    width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crop-left {
    object-position: 20% center;
}

.crop-right {
    object-position: 80% center;
}

/*
#resortsection .container {
    max-width: 1000px;
}
    */

.photo-1 {
    top:40px;
    left: 50%;
    transform: translateX(-600px) rotate(10deg);
}

.photo-2 {
    top:50px;
    left: 50%;
    transform: translateX(-290px) rotate(-8deg);
}

.photo-3 {
    top:50px;
    left: 50%;
    transform: translateX(35px) rotate(7deg);
}

.photo-4 {
    top:70px;
    left: 50%;
    transform: translateX(350px) rotate(-5deg);
}

/* Tablet Polaroid */
@media (max-width: 991px) {

    .polaroid-stage {
        position: relative;
        height: 520px; 
        overflow: hidden;
    }
    
    .photo {
        width:220px;
    }

    .photo-1 {
        left: 50%;
        transform: translateX(-400px) rotate(10deg);
    }

    .photo-2 {
        top:30px;
        left: 50%;
        transform: translateX(-150px) rotate(-12deg);
    }

    .photo-3 {
        left: 50%;
        transform: translateX(110px) rotate(5deg);
    }

    .photo-4 {
        display:none;
    }
}

@media (max-width: 791px) {

    .polaroid-stage {
        position: relative;
        height: 500px; 
        overflow: hidden;
    }
    
    .photo {
        width:200px;
    }

    .photo-1 {
        transform: translateX(-280px) rotate(10deg);
    }

    .photo-2 {
        transform: translateX(60px) rotate(-12deg);
    }

    .photo-3 {
        display:none;
    }

    .photo-4 {
        display:none;
    }
}

/* Mobile Polaroid */
@media (max-width: 576px) {

    .hero-content {
        justify-content: flex-start !important;
        padding-top: 2rem;
        padding-bottom: 0 !important;
    }

    .polaroid-stage {
        position: relative;
        height: 200px; 
        overflow:visible;
    }

    .photo {
        width:130px;
    }

    .photo-1 {
        left:20%;
        top:110px;
        z-index: 2;
        padding: 5px 5px 25px;

        transform:
            translateX(-50%)
            rotate(-10deg);
    }

    .photo-2,
    .photo-3,
    .photo-4 {
        display:none;
    }

}

/* Carousel */
.summary-carousel img {
    height: 350px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .summary-carousel img {
        height: 250px;
    }
}

/* Testimonials */

#testimonials {
    background: #f8f9fa;
}

#testimonials .card {
    border-radius: 20px;
}

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
    color: #032445;
}

#testimonials .swiper-pagination-bullet-active {
    background: #D4AF37;
}


/* Resort Header */
.resort-header {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 2rem;
}

.resort-subtitle {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.resort-title {
    color: #032445;
    font-family: Georgia, serif;
    font-size: 2.5rem;
}

@media (max-width: 576px) {

    .resort-title {
        font-size: 2rem;
    }

    .resort-subtitle {
        font-size: 0.8rem;
    }

}




/* Testing Contact Us Form */
.contact-hero{
    background:#f8f9fa;
    padding-top:5rem;
    padding-bottom:5rem;
}

.contact-small-title{
    color:#D4AF37;
    letter-spacing:.18rem;
    font-weight:700;
}

.contact-title{
    color:#032445;
    font-family:Georgia,serif;
    margin-bottom:1rem;
}

/*
.contact-card{
    background:white;
    padding:2rem;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
} */

.contact-card {
    background: white;
    padding:2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-card h4{
    color:#032445;
}

#contactForm{
    background:white;
    padding:2.5rem;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/*
.form-control,
.form-select{
    border-radius:12px;
    padding:.85rem;
}
    */

.form-control,
.form-select{
    border-radius: .25rem;
}

.form-control:focus,
.form-select:focus{
    border-color:#D4AF37;
    box-shadow:0 0 0 .25rem rgba(212,175,55,.15);
}


/* New form css */

.form-label-group {
    display: block;
    margin-bottom: .35rem;
    margin-top: 1.75rem;

    color: #212529;
    font-size: .95rem;
    font-weight: 500;
}

.form-label {
    color: #6c757d;
    font-size: .8rem;
}

.required {
    color: #D4AF37;
    font-weight: 600;
}

/* Thank You page*/
.thankyou-hero{
    padding-top: 3rem;
}

.thankyou-card{
    max-width:850px;
    background:white;
    padding:4rem;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.thankyou-icon{
    color:#D4AF37;
    font-size:5rem;
}