* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: 0 0 0 #ff0000;
    }
    20% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 2px 0 #00ff00;
    }
    40% {
        transform: translate(-2px, -2px);
        text-shadow: 2px -2px 0 #0000ff;
    }
    60% {
        transform: translate(2px, 2px);
        text-shadow: -2px 2px 0 #ff0000;
    }
    80% {
        transform: translate(2px, -2px);
        text-shadow: -2px -2px 0 #00ff00;
    }
    100% {
        transform: translate(0);
        text-shadow: 0 0 0 #0000ff;
    }
}

body::before {
    display: none !important;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="320" height="120" viewBox="0 0 320 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 Q 40 0 80 40 T 160 40 T 240 40 T 320 40" stroke="%23e53935" stroke-width="2" opacity="0.18"/><path d="M0 80 Q 60 100 120 80 T 240 80 T 320 80" stroke="%23e57373" stroke-width="2" opacity="0.13"/><path d="M0 100 Q 40 120 80 100 T 160 100 T 240 100 T 320 100" stroke="%23f06292" stroke-width="2" opacity="0.10"/><path d="M0 60 Q 30 30 60 60 T 120 60 T 180 60 T 240 60 T 300 60 T 320 60" stroke="%23e53935" stroke-width="1.5" opacity="0.15"/><path d="M0 20 Q 50 60 100 20 T 200 20 T 300 20 T 320 20" stroke="%23e57373" stroke-width="1.5" opacity="0.12"/><path d="M0 110 Q 80 90 160 110 T 320 110" stroke="%23f06292" stroke-width="1.5" opacity="0.10"/></svg>');
    background-size: 320px 120px;
    background-repeat: repeat;
    background-attachment: fixed;
    overflow-x: hidden !important;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: transparent !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
}

.video-wrapper h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px #000;
    font-size: 3rem;
    padding: 1rem;
    animation: glitch 3s infinite;
    pointer-events: none;
}

.intro {
    padding: 2rem;
    text-align: left;
    background-color: transparent !important;
}

.intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.intro p .first-line {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    display: block;
    margin-bottom: 1rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.gallery {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: transparent !important;
    max-width: 100vw;
    overflow-x: auto;
}

.gallery-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2vw;
    background: none;
    box-shadow: none;
    min-height: 400px;
    margin-bottom: 2rem;
}

.image-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 1.2rem !important;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
}

.text-container {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
}

.text-container h2 {
    color: #111;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: left;
}

.text-container p {
    color: #111;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.caption {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-style: italic;
}

.gallery-row {
    display: flex;
    flex-direction: row !important;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 1rem;
    width: 100%;
}

.gallery-row .gallery-item {
    flex: 1 1 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-row .image-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-row .image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 1.2rem !important;
}

.gallery-row-caption {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #e53935;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: 'Pacifico', 'Segoe Script', cursive, sans-serif;
    text-shadow: 1px 1px 8px #fff6, 0 2px 12px #fff3;
}
.chill-wave {
    display: inline-block;
    color: #2196f3;
    font-size: 2.2rem;
    font-family: 'Pacifico', 'Segoe Script', cursive, sans-serif;
    font-style: italic;
    animation: wave 1.5s infinite linear alternate;
    transform-origin: 70% 70%;
    text-shadow: 1px 1px 8px #fff6, 0 2px 12px #fff3;
}
@keyframes wave {
    0% { transform: rotate(-8deg) scale(1.05); }
    50% { transform: rotate(8deg) scale(1.15); }
    100% { transform: rotate(-8deg) scale(1.05); }
}

@media (max-width: 900px) {
    .gallery-row {
        gap: 0.5rem;
    }
    .gallery-row .gallery-item {
        max-width: 50vw;
    }
    .gallery-row .image-container img {
        border-radius: 0.8rem;
    }
    .gallery-item {
        flex-direction: column;
        align-items: center;
        min-height: unset;
        gap: 1.5rem;
        padding: 0;
    }
    .image-container {
        max-width: 90vw;
        width: 100%;
        aspect-ratio: 1/1;
    }
    .text-container {
        padding: 0;
        align-items: center;
        text-align: center;
    }
    .text-container h2, .text-container p {
        text-align: center;
    }
    .hero-media {
        width: 100vw;
        height: 100vh;
        min-height: unset;
        max-height: unset;
    }
    .video-wrapper {
        width: 100vw;
        height: 100vh;
    }
    #background-video {
        width: 100vw;
        height: 100%;
        min-width: 100vw;
        min-height: 100%;
    }
    .video-wrapper h1 {
        font-size: 2rem;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .intro {
        padding: 1rem;
    }
    
    .gallery-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .text-container {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-media {
        height: 100vh;
        min-height: unset;
        max-height: unset;
    }
    .video-wrapper h1 {
        font-size: 1.2rem;
        padding: 0.3rem 0.5rem;
        text-shadow: 2px 2px 8px #000, 0 2px 16px #0008;
        animation: glitch 3s infinite;
        background: none;
        border-radius: 0;
    }
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border-radius: 2rem;
    box-shadow: none;
    padding: 0;
    margin: 2rem 0;
    gap: 0;
    min-height: 340px;
    overflow: visible;
}

.feature-image {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    height: 440px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 1.2rem !important;
    display: block;
}

/* Individual image adjustments for face visibility */
.feature-image.jump img {
    object-position: center 20%;
}
.feature-image.suit img {
    object-position: center 30%;
}

.feature-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem 2rem 2.5rem 2rem;
    background: linear-gradient(270deg, rgba(229,57,53,0.75) 0%, rgba(229,57,53,0.0) 100%);
    border-radius: 0 2rem 2rem 0;
    z-index: 2;
    color: #fff;
    box-sizing: border-box;
    pointer-events: none;
}

.feature-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 1.2rem 0;
    line-height: 1.1;
    color: #fff;
    text-shadow: 2px 2px 8px #000, 0 2px 16px #0008;
}

.feature-text p {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 6px #000, 0 2px 12px #0008;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 900px) {
    .feature-card {
        flex-direction: row;
        min-height: 220px;
    }
    .feature-image {
        width: 160px;
        height: 300px;
        flex: 0 0 160px;
    }
    .feature-text {
        width: 60%;
        padding: 1.2rem 1rem 1.2rem 1rem;
        border-radius: 0 1.2rem 1.2rem 0;
    }
    .feature-text h2 {
        font-size: 1.3rem;
    }
    .feature-text p {
        font-size: 0.95rem;
    }
}

.hero-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    max-width: 700px;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px #000;
    margin-bottom: 1rem;
    animation: glitch 3s infinite;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px #000;
}

.hero-btn {
    background: #fff;
    color: #e53935;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
    background: #e53935;
    color: #fff;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}
@media (max-width: 600px) {
    .hero-center-content {
        width: 98vw;
        max-width: 98vw;
    }
    .hero-title {
        font-size: 1.2rem;
        padding: 0.3rem 0.5rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-btn {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }
}

.carousel-section {
    width: 100vw;
    overflow: hidden;
    background: linear-gradient(120deg, #ffe0ec 0%, #fff6e0 100%);
    padding: 2rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent !important;
    max-width: 100vw;
    overflow-x: auto;
}

.carousel {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 90vw;
    max-width: 900px;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 320px;
    max-width: 350px;
    background: rgba(255,255,255,0.25);
    color: #e53935;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2.5rem 2rem 2rem 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s, color 0.3s;
    backdrop-filter: blur(8px);
    position: relative;
    border: 1.5px solid rgba(229,57,53,0.15);
}

.carousel-item .quote-mark {
    font-size: 3rem;
    color: #e53935;
    opacity: 0.18;
    position: absolute;
    left: 1.2rem;
    top: 0.5rem;
    animation: quote-bounce 2s infinite alternate;
    pointer-events: none;
}
.carousel-item .quote-mark.end {
    left: unset;
    right: 1.2rem;
    top: unset;
    bottom: 0.5rem;
    transform: scaleX(-1);
    animation-delay: 1s;
}

@keyframes quote-bounce {
    0% { transform: translateY(0) scaleX(1); }
    100% { transform: translateY(-8px) scaleX(1); }
}

.carousel-item.active, .carousel-item:hover {
    box-shadow: 0 12px 36px 0 rgba(229,57,53,0.18), 0 2px 12px rgba(0,0,0,0.10);
    transform: scale(1.06);
    background: rgba(255,255,255,0.45);
    color: #b71c1c;
    z-index: 2;
}

.carousel-author {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #b71c1c;
    opacity: 0;
    transform: translateY(20px);
    animation: author-in 0.7s forwards;
    animation-delay: 0.5s;
}

.carousel-item.active .carousel-author, .carousel-item:hover .carousel-author {
    opacity: 1;
    transform: translateY(0);
    animation: author-in 0.7s forwards;
}

@keyframes author-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .carousel {
        gap: 1rem;
        width: 98vw;
        max-width: 98vw;
    }
    .carousel-item {
        min-width: 80vw;
        max-width: 90vw;
        font-size: 1rem;
        padding: 1.2rem 0.7rem;
    }
}

.carousel-intro {
    text-align: center;
    font-size: 2rem;
    font-family: 'Segoe Script', 'Comic Sans MS', cursive, sans-serif;
    color: #111;
    margin: 0 0 1.2rem 0;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: none;
}

.three-pic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    width: 90vw;
    max-width: 900px;
    margin: 2.5rem auto 3rem auto;
    align-items: stretch;
    background: none;
    max-width: 100vw;
    overflow-x: auto;
}
.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
}
.grid-img-top {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.grid-img-bottom {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}
.grid-img-right {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}
@media (max-width: 900px) {
    .three-pic-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 98vw;
        max-width: 98vw;
        align-items: stretch;
        margin: 1.5rem auto 2rem auto;
    }
    .grid-img {
        width: 100%;
        height: 140px;
        max-height: 140px;
        aspect-ratio: unset;
        margin-bottom: 0;
        object-fit: cover;
        border-radius: 1.2rem !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }
}

.four-pic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.2rem;
    width: 90vw;
    max-width: 900px;
    margin: 2rem auto 3rem auto;
    align-items: stretch;
    background: none;
    max-width: 100vw;
    overflow-x: auto;
}
.four-grid-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
}
.four-grid-img[alt="Dog"] {
    object-position: center 30%;
}
.four-grid-img[alt="Army"] {
    object-position: center 10%;
}
.four-grid-img[alt="Wedding"] {
    object-position: center 20%;
}
.four-grid-img[alt="Suit"], .feature-image.suit img {
    object-position: center 10%;
}
@media (max-width: 900px) {
    .four-pic-grid {
        width: 98vw;
        max-width: 98vw;
        gap: 0.7rem;
        padding: 0 1vw;
    }
    .four-grid-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        min-height: unset;
        max-height: unset;
        border-radius: 0.8rem;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }
}

.video-embed {
    width: 100%;
    max-width: 600px;
    margin: 3rem auto 2rem auto;
    display: flex;
    justify-content: center;
}
.video-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.video-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #b71c1c;
    margin: 2.5rem auto 1.5rem auto;
    font-weight: 500;
    max-width: 600px;
    line-height: 1.6;
}

.out-with-old-section {
    margin: 3rem auto 2rem auto;
    text-align: center;
    max-width: 700px;
}
.out-with-old-title {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-family: 'Pacifico', 'Segoe Script', 'Comic Sans MS', cursive, sans-serif;
    font-style: italic;
}
.out-with-old-img {
    width: 100%;
    max-width: 500px;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin: 0 auto;
    display: block;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.bottom-cta {
    text-align: center;
    font-size: 2.2rem;
    color: #b71c1c;
    margin: 3rem auto 1rem auto;
    font-family: 'Pacifico', 'Segoe Script', cursive, sans-serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 2px 2px 12px #fff8, 0 2px 16px #fff5;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.social-icons a {
    display: inline-block;
    width: 80px;
    height: 80px;
    transition: transform 0.2s;
}
.social-icons a:hover {
    transform: scale(1.18);
}
.social-icons svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(229,57,53,0.12));
}

.carousel-quote {
    font-size: 2rem;
    font-weight: 900;
    color: #b71c1c;
    line-height: 1.2;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: 0.01em;
    text-shadow: 1px 1px 8px #fff6, 0 2px 12px #fff3;
}

.carousel-item.active .carousel-quote,
.carousel-item:hover .carousel-quote {
    color: #e53935;
    text-shadow: 2px 2px 12px #fff8, 0 2px 16px #fff5;
}

.carousel-subtext {
    font-size: 1.05rem;
    font-style: italic;
    color: #b71c1c;
    font-weight: 400;
    margin-top: 1.2rem;
    opacity: 0.85;
    letter-spacing: 0.01em;
    text-shadow: 1px 1px 6px #fff4;
}

.carousel-item.active .carousel-subtext,
.carousel-item:hover .carousel-subtext {
    color: #e53935;
    opacity: 1;
    text-shadow: 2px 2px 12px #fff8;
}

html {
    scroll-behavior: smooth;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 2000;
    animation: pulse 2s infinite;
}

.floating-button:hover {
    background-color: #b71c1c;
    transform: scale(1.1);
}

.floating-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

section, .gallery, .video-intro, .out-with-old-section {
    margin-bottom: 3rem;
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #e53935;
}

.insta-handle {
    text-align: center;
    font-size: 1rem;
    color: #e53935;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 1px 1px 8px #fff6, 0 2px 12px #fff3;
} 