@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Neuton:wght@200;300;400;700;800&display=swap');

body {
    font-family: 'Neuton', serif !important;
    padding-top: 90px;
}

.navbar {
    background-color: #161616;
    font-weight: 400;
}

.navbar a {
    color: #FFFFFF !important;
}

.navbar a:hover {
    color: #ffd700 !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar .btn {
    background: linear-gradient(135deg, #CE8D4C 0%, #FFD700 100%);
    border: none;
    color: #22221f;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Neuton', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 141, 76, 0.4);
    color: #22221f;
}

.navbar .btn:active {
    transform: translateY(0);
}

.btn-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar .btn:hover .btn-text {
    transform: translateX(-3px);
}

.navbar .btn:hover .btn-icon {
    transform: translateX(3px);
}

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

.carousel-caption {
    color: white;
    font-size: 3rem;
    font-weight: 200;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.card-body {
    background-color: #CE8D4c;
    color: white;
    border-radius: 15px !important;
    overflow: hidden;
    padding: 5px 15px !important;
}

.signup-card-body {
    background-color: #ffffff !important;
    color: #22221f !important;
}

.card {
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
}

.logo-home {
    align-content: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-center.mt-4 {
    margin-top: 56px;
    margin-right: 56px;
    margin-bottom: 56px;
    margin-left: 56px;
    font-size: large;
}
.card-body.p-4.p-md-5.signup-card-body .needs-validation .btn.btn-ely.btn-lg.btn-block {
	background-color: #F6C90E;
}


@media (max-width: 768px) {
    .carousel {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .carousel {
        margin-top: 55px;
    }
}

.carousel-item img {
    width: 100% !important;
    height: 500px;
    object-fit: cover;
}

.el-elyndra-footer {
    background-color: #22221f;
    color: #d9d7ce;
    font-family: 'Georgia', serif;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 8% 20px 8%;
    background: #22221f;
    font-size: 1rem;
}

.footer-section {
    flex: 1 1 0px;
    padding: 16px;
}

.contact-info {
    max-width: 350px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 14px;
}

.footer-contact-label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 14px;
    color: #fff;
    text-decoration: underline;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.footer-icon {
    font-size: 1.25em;
    margin-right: 12px;
    color: #bdaa7c;
}

.newsletter {
    max-width: 540px;
}

.footer-newsletter-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-newsletter-text {
    color: #D7CBAF;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-input {
    padding: 8px 12px;
    font-size: 1rem;
    border: none;
    border-radius: 3px;
    margin-right: 10px;
    width: 220px;
}

.newsletter-btn {
    background: #FFD700;
    color: #22221f;
    font-size: 1rem;
    border: none;
    padding: 8px 22px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: #d2c39f;
}

.footer-bottom {
    text-align: center;
    background: #11110f;
    color: #ccc;
    font-size: 1rem;
    padding: 16px 0 10px 0;
    letter-spacing: 0.5px;
}

@media (max-width: 800px) {
    .footer-main {
        flex-direction: column;
        padding: 30px 5% 10px 5%;
        gap: 28px;
    }

    .footer-section {
        max-width: 100%;
        padding: 0 0 24px 0;
    }

    .newsletter-input {
        width: 100%;
        min-width: 0;
    }
}

/* CONTACT FORM CSS - KEEP ONLY ONE VERSION */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CE8D4C 0%, #FFD700 100%);
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22221f;
    margin-bottom: 15px;
    font-family: 'Neuton', serif;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 600;
    color: #22221f;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Neuton', serif;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    font-family: 'Neuton', serif;
}

.contact-form .form-control:focus {
    border-color: #CE8D4C;
    box-shadow: 0 0 0 0.2rem rgba(206, 141, 76, 0.2);
    outline: none;
}

.contact-form .form-control:hover {
    border-color: #CE8D4C;
}

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

.contact-form select.form-control {
    cursor: pointer;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #CE8D4C 0%, #FFD700 100%);
    border: none;
    color: #22221f;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Neuton', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 141, 76, 0.4);
    color: #22221f;
}

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

.btn-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-text {
    transform: translateX(-3px);
}

.contact-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        margin: 0 15px;
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

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

/* Social Media Icons Container */
.social-icons-container {
    padding: 15px 0;
}

/* Social Media Icons CSS */
.social-icon-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    margin: 25px; /* Increase gap */
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Background colors for icons (optional) */
.social-icon.whatsapp {
    background: linear-gradient(135deg, #e9ebea, #cdd3d2);
}

.social-icon.email {
    background: linear-gradient(135deg, #e9ebea, #cdd3d2);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #e9ebea, #cdd3d2);
}

/* Image styling */
.icon-image {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover .icon-image {
    transform: scale(1.1);
}

/* Transparent icon backgrounds */
.social-icon.transparent {
    background: transparent;
    border: 2px solid #ddd;
}

.social-icon.transparent:hover {
    border-color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icon {
        width: 50px;
        height: 50px;
    }

    .icon-image {
        width: 30px;
        height: 30px;
    }

    body {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .social-icon {
        width: 45px;
        height: 45px;
    }

    .icon-image {
        width: 25px;
        height: 25px;
    }

    .social-icons-container {
        padding: 20px 0;
    }
}

/* CSS for image Hover */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

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

.custom-shadow {
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.6) !important;
}

/* CSS for form select menu */
.form-control select,
.contact-form select.form-control {
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    min-height: calc(1.5em + 0.75rem + 2px);
    background-image: url("data:image/svg+xml,...");
}

/* CSS for pop up mail button */
#emailModal .btn-custom-email {
    background: linear-gradient(135deg, #CE8D4C 0%, #FFD700 100%) !important;
    border: none !important;
    color: #22221f !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#emailModal .btn-custom-email:hover {
    background: linear-gradient(135deg, #FFD700 0%, #CE8D4C 100%) !important;
    color: #22221f !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 141, 76, 0.4);
}


.btn-email-popup {
    background: linear-gradient(135deg, #CE8D4C 0%, #FFD700 100%) !important;
    border: none !important;
    color: #22221f !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-email-popup:hover {
    background: linear-gradient(135deg, #FFD700 0%, #CE8D4C 100%) !important;
    color: #22221f !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 141, 76, 0.4);
}


html, body {
    height: 100%;
}

body {
    background: var(--ely-bg);
    font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ely-primary);
}

.brand-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.card {
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-control {
    border-radius: 0.5rem;
    border-color: #e3e3e3;
}

.form-control:focus {
    border-color: var(--ely-accent);
    box-shadow: 0 0 0 0.2rem rgba(200,169,106,0.25);
}

.btn-ely {
    background: var(--ely-accent);
    color: #111;
    border-radius: 0.5rem;
    border: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-ely:hover, .btn-ely:focus {
    background: var(--ely-accent-dark);
    color: #111;
}

.small-rule {
    color: var(--ely-muted);
    font-size: 0.875rem;
}

.req-dot {
    color: #dc3545;
}

.branding-bar {
    text-align: center;
    margin-bottom: 1.25rem;
}

.branding-bar .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ely-accent);
    color: #111;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.link-muted {
    color: var(--ely-muted);
}

.link-muted:hover {
    color: var(--ely-accent-dark);
    text-decoration: none;
}

/* Password hint list */
.pw-hints li {
    margin-bottom: 0.25rem;
}
