:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --gold-accent: #c9a95c;
    --white: #ffffff;
    --off-white: #f5f5f5;
}

body {
    background-color: var(--primary-black);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    height: auto;
}

.navbar > .container {
    position: relative;
}

.navbar-brand {
    width: auto;
    margin: 0 !important;
    z-index: 2;
}

.logo-image {
    height: 140px;
    max-height: none !important;
    filter: invert(1);
}

.navbar-menu {
    background-color: transparent;
    box-shadow: none;
    padding: 2.75rem 0 0 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.navbar-start {
    margin: 0;
    display: flex;
    gap: 2rem;
}

.navbar-item {
    color: var(--white) !important;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-item:hover {
    background-color: transparent !important;
    color: var(--gold-accent) !important;
}

.navbar-burger {
    display: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

@media screen and (max-width: 768px) {
    .navbar > .container {
        flex-direction: row;
    }

    .navbar-brand {
        width: auto;
    }

    .navbar-burger {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        background-color: var(--secondary-black);
        padding: 1rem 0;
    }

    .navbar-menu.is-active {
        display: block;
    }

    .navbar-start {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-item {
        text-align: center;
        padding: 0.75rem;
    }

    .logo-image {
        height: 80px;
    }

    main {
        padding-top: 120px;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }
}

main {
    flex: 1;
    padding-top: 160px;
}

.footer {
    background-color: var(--secondary-black);
    color: var(--white);
    padding: 1.5rem;
}

@media screen and (max-width: 768px) {
    main {
        padding-top: 120px;
    }
}

/* Hero Video Styles */
.hero {
    position: relative;
    background-color: var(--primary-black);
    min-height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: 2rem auto;
    aspect-ratio: 16/9;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-border {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .title {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    color: var(--off-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.button.is-outlined.is-light {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 3rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

.button.is-outlined.is-light:hover {
    background-color: var(--gold-accent);
    color: var(--primary-black);
}

@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-video-container {
        position: relative;
        width: 100vw;
        height: 100vw;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        bottom: 10rem;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
        padding: 1.5rem;
    }

    .hero-content {
        margin-top: 10rem;
    }

    .hero-content .title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .video-border {
        display: none;
    }
}

/* Override Bulma's default hero video hiding */
.hero-video-container video {
    display: block !important;
}

/* Featured Videos Styles */
.featured-work {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.featured-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--secondary-black);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.featured-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.featured-video {
    display: none; /* Hide since we're using iframes now */
}

.video-wrapper {
    transition: transform 0.3s ease;
    position: relative;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-wrapper .title {
    color: var(--white);
    transition: color 0.3s ease;
}

.video-wrapper:hover .title {
    color: var(--gold-accent);
}

.video-wrapper .subtitle {
    color: var(--off-white);
    opacity: 0.8;
}

/* Custom video controls styling */
.featured-video::-webkit-media-controls {
    background-color: rgba(26, 26, 26, 0.7);
}

.featured-video::-webkit-media-controls-panel {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .featured-work {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .columns.is-variable.is-8 {
        --columnGap: 1rem;
    }

    .video-wrapper {
        margin-bottom: 2rem;
    }

    .featured-video-container {
        width: 100%;
        padding-top: 56.25%; /* maintain 16:9 aspect ratio */
        margin-bottom: 1rem;
    }

    .featured-video {
        position: absolute;
        width: 100%;
        height: 100%;
    }
}

/* Testimonial Carousel Styles */
.testimonials {
    background-color: var(--secondary-black);
    padding: 6rem 2rem;
    position: relative;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 2rem;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content .quote {
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--white);
}

.testimonial-content .author {
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.testimonial-content .venue {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.dot.active {
    opacity: 1;
    background-color: var(--gold-accent);
}

.button.is-ghost {
    color: var(--white);
    border: none;
    padding: 1rem;
}

.button.is-ghost:hover {
    color: var(--gold-accent);
    background: transparent;
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonial-content .quote {
        font-size: 1.1rem;
    }

    .testimonial-slides {
        height: 300px;
    }
}

/* Update Testimonial Styles */
.testimonials .title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Optional: Add a subtle gradient overlay to create more contrast */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
}

/* Pricing Teaser Styles */
.pricing-teaser {
    background-color: var(--primary-black);
    padding: 8rem 2rem;
    position: relative;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-teaser .title {
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
}

.pricing-teaser .subtitle {
    color: var(--gold-accent);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pricing-teaser .travel-note {
    color: var(--off-white);
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .pricing-teaser {
        padding: 4rem 1rem;
    }

    .pricing-teaser .subtitle {
        font-size: 1.75rem !important;
    }
}

/* Services Page Styles */
.services-intro {
    padding: 6rem 2rem 4rem;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--off-white);
}

.signature {
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-style: italic;
}

.packages {
    padding: 2rem 2rem 4rem;
}

.package-card {
    background-color: var(--primary-black);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
}

/* Add elegant double border effect */
.package-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border: 1px solid var(--gold-accent);
    border-radius: 10px;
    opacity: 0.3;
}

.package-card::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid var(--gold-accent);
    border-radius: 9px;
    opacity: 0.15;
}

/* Update hover effect to include border animation */
.package-card:hover {
    transform: translateY(-5px);
}

.package-card:hover::before,
.package-card:hover::after {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.package-header .title {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.75rem;
    color: var(--white);
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-content li {
    color: var(--off-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.package-coverage {
    color: var(--gold-accent);
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    margin-top: auto;
}

.note-section .note {
    color: var(--off-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.travel-section {
    background-color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.table {
    background-color: transparent;
    color: var(--off-white);
}

.table td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media screen and (max-width: 768px) {
    .travel-section {
        padding: 2rem 1rem;
    }
    
    .table td {
        padding: 0.75rem;
    }
}

/* Portfolio Styles */
.portfolio-intro {
    padding: 6rem 2rem 4rem;
}

.video-card {
    background-color: var(--primary-black);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border: 1px solid var(--gold-accent);
    border-radius: 10px;
    opacity: 0.3;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info .title {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.video-info .description {
    color: var(--off-white);
    font-size: 1rem;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card:hover::before {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
    .portfolio-intro {
        padding: 4rem 1rem 2rem;
    }
}

/* Contact Form Styles */
.contact-box {
    background-color: var(--primary-black);
    border: 1px solid var(--gold-accent);
    padding: 2rem;
}

.contact-box .label {
    color: var(--white);
}

.contact-box .input,
.contact-box .textarea {
    background-color: var(--secondary-black);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-box .input:focus,
.contact-box .textarea:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.125em rgba(201, 169, 92, 0.25);
}

.contact-box .button {
    margin-top: 1rem;
}

.notification {
    margin-top: 1rem;
}

/* Update title styles globally */
.title {
    color: var(--white) !important; /* Override Bulma's default */
}

.title.is-1 {
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Fix spacing for all main sections */
.section {
    padding-top: 8rem; /* Increased from default to account for fixed navbar */
}

@media screen and (max-width: 768px) {
    .section {
        padding-top: 6rem;
    }
}

/* Optional: Add subtle text shadow for better readability */
.title.is-1, 
.title.is-2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Update Contact Form Styles */
.contact-intro {
    padding-bottom: 2rem !important; /* Reduce bottom padding of intro section */
}

.contact-form {
    padding-top: 0; /* Remove top padding since intro section handles spacing */
}

/* Optional: If you want to adjust the subtitle spacing specifically */
.contact-intro .subtitle {
    margin-bottom: 0;
}

/* Add Bulma color overrides */
.notification.is-success {
    background-color: var(--gold-accent);
    color: var(--primary-black);
}

.notification.is-success strong {
    color: var(--primary-black);
}

/* Optional: Add a subtle transition */
.notification {
    transition: opacity 0.3s ease;
}

/* Update container and navbar styles for mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem; /* Add padding to containers */
        width: 100%; /* Ensure container doesn't overflow */
        max-width: 100%; /* Prevent horizontal scrolling */
    }

    .navbar > .container {
        padding: 0 0.5rem; /* Reduce navbar container padding */
    }

    .navbar-burger {
        right: 0.5rem; /* Adjust burger position */
    }

    /* Adjust services page specific styles */
    .services-intro,
    .packages {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .package-card {
        margin: 0 0.5rem; /* Add some margin to cards */
    }

    /* Add button width constraint */
    .package-card .button-container {
        width: 90vw;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card .button {
        width: 100%;
    }

    /* General button width constraint */
    .button-container-mobile {
        width: 90vw;
        max-width: 400px;
        margin: 0 auto;
    }

    .button-container-mobile .button {
        width: 100%;
    }

    .note-section .button.is-outlined.is-light {
        max-width: 90vw;
        margin: 0 auto;
        display: block;
        white-space: normal; /* Allow text to wrap */
        height: auto; /* Allow button to grow with content */
        padding: 1rem 1.5rem; /* Adjust padding for better mobile display */
        line-height: 1.4; /* Improve readability of wrapped text */
    }
} 