/* Additional styles for Flyventra Surf Club */
/* Main color palette is defined in layout file */

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero__image,
.content-block__image,
.services__image,
.contact__image,
.about__image {
    margin: 20px 0;
    text-align: center;
}

.hero__image img,
.content-block__image img,
.services__image img,
.contact__image img,
.about__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Container and section styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero,
.content-block,
.services,
.contact,
.about {
    padding: 40px 0;
}

.hero__content,
.content-block__wrapper,
.services__content,
.contact__content,
.about__content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-primary {
    background-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--light);
}

.bg-white {
    background-color: white;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none;
    }
}