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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;  /* Or 'Inter' or 'Montserrat' */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* For headings */
h1, h2, h3, .logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4ecdc4;
}


/* Logo Image Styling */
.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Mobile logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
}

/* Remove text styling from logo when using image */
.logo {
    font-size: inherit;
    font-weight: normal;
}




/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 51, 102, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.mobile-menu-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-links a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-links a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-links a:nth-child(4) { animation-delay: 0.4s; }

.mobile-menu-links a:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    transform: translateY(0) scale(1.05);
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,20 Q250,50 500,20 T1000,20 V100 H0 Z"/></svg>');
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-content {
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

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

/* Surfboard Catalog */
.catalog {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #003366;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 2px solid #4ecdc4;
    color: #4ecdc4;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
}

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

.surfboard-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.surfboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.surfboard-card:hover .card-image img {
    transform: scale(1.05);
}

/* Fallback icon for when images don't load */
.board-icon {
    width: 120px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    position: relative;
    transform: rotate(-10deg);
    display: none; /* Hidden when image is present */
}

.board-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 15px;
    height: 15px;
    background: #4ecdc4;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Show icon only when image fails to load */
.card-image:not(.has-image) .board-icon {
    display: block;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #003366;
}

.card-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e8f4f8;
    color: #4ecdc4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
}

.rent-btn {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rent-btn:hover {
    background: #44a08d;
    transform: scale(1.05);
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #003366;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Success message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}



.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #4ecdc4;
    border-color: #4ecdc4;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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

/* Mobile responsive */
@media (max-width: 480px) {
    .social-media {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}




/* Surf Lessons Section */
.lessons-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.price-unit {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.service-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.pricing-info {
    background: rgba(78, 205, 196, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #4ecdc4;
}

.pricing-info p {
    margin: 0.5rem 0;
    color: #003366;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #4ecdc4;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 3rem;
    font-weight: bold;
    color: #4ecdc4;
    line-height: 1;
}

.price-period {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.repair-prices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.repair-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
}

.repair-item span:first-child {
    font-weight: 600;
    color: #003366;
}

.repair-item span:last-child {
    font-weight: bold;
    color: #4ecdc4;
}

.pricing-note {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ffc107;
}

.pricing-note p {
    margin: 0;
    color: #856404;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lessons-section,
    .pricing-section {
        padding: 3rem 1rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
        margin: 0;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-price {
        font-size: 1.8rem;
    }

    .price-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .pricing-features {
        padding: 1.5rem;
    }

    .repair-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}






/* Mobile First Responsive Design */
@media (max-width: 768px) {
    /* Show mobile menu button and hide regular nav */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    /* Header adjustments for small screens */
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Hero section mobile optimization */
    .hero {
        padding: 0 1rem;
        height: 90vh;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Catalog section mobile */
    .catalog {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Filter tabs mobile layout */
    .filter-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-tab {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        text-align: center;
    }

    /* Surfboard grid mobile */
    .surfboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .surfboard-card {
        border-radius: 12px;
    }

    .card-image {
        height: 200px;
    }

    .board-icon {
        width: 100px;
        height: 25px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .card-features {
        gap: 0.3rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .rent-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Modal mobile optimization */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    /* Footer mobile */
    footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    /* Mobile menu adjustments for small screens */
    .mobile-menu-links a {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    /* Tablet adjustments */
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .surfboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .filter-tab {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .modal-content {
        width: 80%;
        max-width: 500px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Desktop small screens */
    .surfboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Landscape mobile phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .surfboard-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .cta-button:hover,
    .rent-btn:hover,
    .submit-btn:hover {
        transform: none;
    }

    .filter-tab:hover {
        transform: none;
    }

    /* Make buttons larger for touch */
    .rent-btn {
        min-height: 44px;
        min-width: 100px;
    }

    .cta-button {
        min-height: 48px;
        padding: 1rem 2rem;
    }

    .filter-tab {
        min-height: 44px;
    }
}

