@font-face {
    font-family: 'PirateFont';
    src: url('fonts/TheRumIsGone-Wy1nG.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF1493;
    --secondary-color: #FFFFFF;
    --dark-brown: #000000;
    --light-sand: #F5F5F5;
    --ocean-blue: #1A1A1A;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --pink: #FF1493;
    --vivid-pink: #FF69B4;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
    border-bottom: 2px solid var(--pink);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 1 auto;
}

.logo-pirate {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--pink);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.5);
}

.logo-icon {
    height: 35px;
    width: auto;
    flex-shrink: 0;
}

.logo {
    font-family: 'PirateFont', cursive;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.5);
    margin: 0 0.25rem;
    white-space: nowrap;
}

.nav-phone {
    flex: 0 0 auto;
    margin-left: auto;
}


.phone-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--vivid-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.doordash-link {
    flex: 0 0 auto;
    margin-left: 1rem;
}

.doordash-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.doordash-logo-link[title] {
    position: relative;
}

.doordash-logo-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

.doordash-logo-link[title]:hover::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    pointer-events: none;
}

.doordash-logo-link:hover {
    transform: scale(1.1);
}

.doordash-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex: 0 0 auto;
}

.mobile-menu-button {
    display: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: color 0.3s ease;
    font-weight: bold;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--vivid-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .nav-content {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .logo-container {
        order: 1;
        flex: 1 1 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .nav-phone {
        order: 2;
        margin: 0;
    }


    .nav-links {
        order: 4;
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        padding: 0.5rem 0;
    }

    .nav-content {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
    }

    .logo-container {
        order: 1;
        flex: 0 1 auto;
        gap: 0.25rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-pirate {
        width: 25px;
        height: 25px;
    }

    .logo-icon {
        height: 25px;
    }

    .nav-phone {
        order: 2;
        flex: 0 0 auto;
        margin: 0;
    }


    .phone-link {
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
        order: 4;
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 0.25rem;
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .doordash-link {
        flex: 0 0 auto;
        margin-left: 0.5rem;
    }

    .doordash-logo {
        width: 28px;
        height: 16px;
    }

    .mobile-menu-button {
        order: 3;
        position: static;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.25rem 0.5rem;
        margin: 0.25rem auto 0;
        display: block;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        padding: 70px 10px 20px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content .container {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 1rem;
    }

    .hero-with-pirate {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        width: 100%;
    }

    .hero-side-pirate {
        width: auto;
        height: auto;
        max-width: 90px;
        max-height: 120px;
        object-fit: contain;
        object-position: center top;
        margin: 0 auto 0.25rem;
        display: block;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .pirate-images {
        display: none;
    }

    .mobile-tough-pirate {
        display: block !important;
        width: auto;
        max-width: 90px;
        height: auto;
        max-height: 120px;
        margin: 0.5rem auto 0;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
}

.hero-section {
    background: linear-gradient(rgba(255, 20, 147, 0.2), rgba(0, 0, 0, 0.8)),
                linear-gradient(135deg, #000000 0%, #FF1493 50%, #000000 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.hero-content .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-with-pirate {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: slideInLeft 1s ease;
}

.hero-side-pirate {
    width: auto;
    height: 350px;
    max-height: 350px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'PirateFont', cursive;
    font-size: 4rem;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(255, 20, 147, 0.7);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--pink);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.5);
    border: 2px solid var(--text-light);
}

.mobile-tough-pirate {
    display: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--vivid-pink);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.8);
}

.pirate-images {
    flex: 1;
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease;
}

.pirate-img {
    position: absolute;
    height: 350px;
    max-height: 350px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pinup-pirate {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.tough-pirate {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}


.section-title {
    font-family: 'PirateFont', cursive;
    font-size: 3rem;
    text-align: center;
    color: var(--pink);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-section {
    padding: 80px 0;
    background: var(--text-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
}

.services-section .section-title {
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 0, 5, 0.8);
    border: 2px solid var(--pink);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
    background: rgba(30, 0, 8, 0.9);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chalice-icon {
    background: url('images/pirates-chalice.png') no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-icon-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card h3 {
    font-family: 'PirateFont', cursive;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: var(--pink);
}

.service-link:hover {
    background: var(--secondary-color);
    color: var(--pink);
}

.contact-section {
    padding: 80px 0;
    background: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-family: 'PirateFont', cursive;
    font-size: 1.8rem;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark-brown);
}

.contact-item a {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.contact-item a:hover {
    color: var(--vivid-pink);
    text-decoration: underline;
}


.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--pink);
}

.footer {
    background: var(--dark-brown);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--pink);
}

.footer-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-light);
    opacity: 0.9;
}


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 65px 5px 15px;
    }

    .hero-side-pirate {
        max-width: 70px;
        max-height: 100px;
    }

    .mobile-tough-pirate {
        max-width: 70px;
        max-height: 100px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.7rem;
    }

    .cta-button {
        padding: 7px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 850px) and (orientation: landscape) {
    .navbar {
        padding: 0.25rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-pirate {
        width: 20px;
        height: 20px;
    }

    .logo-icon {
        height: 20px;
    }

    .phone-link {
        font-size: 0.7rem;
    }

    .nav-link {
        font-size: 0.65rem;
    }

    .nav-links {
        gap: 0.5rem;
        margin-top: 0.15rem;
    }

    .hero-content {
        padding: 50px 10px 20px;
        min-height: 100vh;
        align-items: center;
    }

    .hero-with-pirate {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .hero-side-pirate {
        max-width: 60px;
        max-height: 80px;
        margin: 0;
    }

    .hero-text {
        text-align: left;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .hero-description {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .cta-button {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .mobile-tough-pirate {
        display: none !important;
    }

    .pirate-images {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .pirate-img {
        position: static;
        height: 150px;
        max-height: 150px;
        width: auto;
    }

    .tough-pirate {
        transform: none;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.pirate-scroll-arrow {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--pink);
    border-radius: 15px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
    animation: float-bounce 3s ease-in-out infinite;
}

.anchor-icon {
    font-size: 16px;
    color: var(--pink);
    animation: anchor-swing 2s ease-in-out infinite;
}

.scroll-text {
    font-family: 'PirateFont', cursive;
    font-size: 10px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    margin: 0 2px;
}

.arrow-down {
    font-size: 18px;
    color: var(--pink);
    font-weight: bold;
    animation: arrow-bob 1.5s ease-in-out infinite;
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

@keyframes anchor-swing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes arrow-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* Mobile responsive adjustments for scroll indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 15px;
        left: 15px;
        transform: scale(0.8);
    }

    .pirate-scroll-arrow {
        padding: 6px 8px;
    }

    .anchor-icon {
        font-size: 14px;
    }

    .scroll-text {
        font-size: 9px;
    }

    .arrow-down {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        transform: scale(0.7);
    }
}

