/* assets/css/main.css */
:root {
    --default-color: #fafafa;
    --heading-color: #ffffff;
    --accent-color: #3ce759;
    --background-color: #000000;
    --surface-color: #1a1a1a;
    --contrast-color: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--default-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--heading-color);
}

.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--heading-color);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
    color: var(--default-color);
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-link:hover::before,
.nav-link.active::before {
    visibility: visible;
    width: 25px;
}

.hero-section {
    background: url('../images/Me.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    margin-top: 70px;
}

/* Removed the dark overlay */
.hero-section::before {
    display: none;
}

/* Added text shadow for better readability */
.hero-section h2 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.typed-cursor {
    font-size: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.section-title h2::after {
    content: "";
    width: 60px;
    height: 2px;
    display: block;
    background: var(--accent-color);
    margin: 8px auto;
}

.section-title div {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card {
    background: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card .icon {
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #3ce759;
    border-color: #3ce759;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.counter-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #3ce759 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/*Gallery Grid*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid .gallery-item {
    height: 0;
    padding-bottom: 100%; 
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-grid .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-info {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info .icon {
    background: var(--accent-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 24px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 5px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
    color: white;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 30px;
    color: var(--default-color);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    text-decoration: none;
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Centered footer content */
.footer .row {
    justify-content: center;
    text-align: center;
}

.footer-left {
    max-width: 600px;
    margin: 0 auto;
}

.copyright {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
}

.booking-form {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.book-cover {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    max-width: 100%;
    margin-bottom: 20px;
}

.book-cover:hover {
    transform: scale(1.03);
}

/* Purchase buttons */
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.btn-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    background-color: #23272b;
    border-color: #1d2124;
}

/* Purchase buttons grid */
.d-flex.flex-wrap.justify-content-center.gap-2 .btn {
    padding: 8px 15px;
    font-size: 14px;
    margin: 5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.d-flex.flex-wrap.justify-content-center.gap-2 .btn i {
    margin-right: 8px;
}

.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

#modalImage {
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
    display: block;
}

.btn-close-white {
    filter: invert(1);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h2 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title div {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title div {
        font-size: 1.8rem;
    }

    .d-flex.flex-wrap.justify-content-center.gap-2 .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    
}