/* Section Styling */
.section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    transition: all 0.5s ease;
}

.section:nth-child(odd) {
    background-color: rgba(250, 250, 252, 0.8);
}

.section:nth-child(even) {
    background-color: rgba(245, 247, 250, 0.8);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 247, 250, 0.9) 100%), 
                      url('IMG-20250707-WA0143.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px) grayscale(20%) brightness(1.1);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 15px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    max-width: 1200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .container {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    max-width: 1200px;
    width: 100%;
}

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

/* Global Styles */
:root {
    --primary-color: #0a3550;
    --secondary-color: #156b94;
    --accent-color: #2cc2bc;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f9fafb;
    --section-padding: 80px 0;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --gradient: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    --border-radius: 12px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

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

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Header Styles */
header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 1001;
}

.logo {
    margin-right: auto;
    padding-left: 20px;
}

.logo h1 {
    color: var(--light-text);
    font-size: 24px;
    margin: 0;
    white-space: nowrap;
}

nav {
    margin: 0 auto;
}

.desktop-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    color: var(--light-text);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-text);
    transition: width 0.3s;
}

.desktop-nav a:hover:after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 15px 0;
    text-align: center;
}

.mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-text);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    header {
        padding: 10px 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .mobile-nav {
        top: 80px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-image {
        margin-bottom: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content > div {
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}
    transition: all 0.3s;
}

/* Main Content Styles */
main {
    padding-top: 80px;
}

.section {
    padding: var(--section-padding);
    border-bottom: 1px solid #eaeaea;
}

section:last-child {
    border-bottom: none;
}

section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

section h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: pulseWidth 3s infinite;
    z-index: 1;
}

@keyframes pulseWidth {
    0%, 100% { width: 30px; }
    50% { width: 80px; }
}

/* HOME Section Styles */
#home {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

#home:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.05;
    top: -200px;
    right: -200px;
    z-index: 0;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.profile-image {
    min-width: 400px;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 10px solid white;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: calc(var(--border-radius) - 5px);
    transition: transform 0.5s ease;
}

.profile-section:hover .profile-image img {
    transform: scale(1.03);
}

.profile-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 10s infinite alternate;
}

@keyframes morphShape {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Achievements Section */
.achievements-section {
    margin-top: 60px;
    padding: 40px 0;
}

.achievements-section h3 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.achievements-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.achievement-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.achievement-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.achievement-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
    box-sizing: border-box;
}

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

.achievement-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.achievement-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.achievement-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.profile-image img {
    max-width: 350px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
    border: 8px solid white;
}

.profile-image img:hover {
transform: translateY(-5px);
box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.profile-content {
flex: 1;
padding: 20px 0;
}

.profile-content h3 {
font-size: 28px;
color: var(--primary-color);
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.profile-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

.mission-statement {
    padding: 40px;
    background-color: #fff;
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.mission-statement:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

/* BUSINESS Section Styles */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.business-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    position: relative;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: -20px;
    transition: right 0.3s ease;
}

.read-more:hover:after {
    right: -25px;
}

/* APPAREL Section Styles */
.apparel-banner {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 10px;
}

.apparel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.apparel-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.view-collection {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 5px;
    font-weight: 500;
}

.view-collection:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

/* MANAGEMENT Section Styles */
.management-content {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.management-info {
    padding: 30px;
    border-bottom: 1px solid #eaeaea;
}

.management-info:last-child {
    border-bottom: none;
}

/* GOLF MEDIA Section Styles */
.media-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.media-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.social-icons {
    margin: 20px 0;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    margin: 0 5px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 5px;
    font-weight: 500;
}

.contact-button:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

/* Footer Styles */
footer {
    background-color: #051a29; /* Dark blue background */
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px 30px;
    max-width: 1200px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h3 {
    font-size: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-text);
}

.footer-links ul li a:hover {
    color: #ddd;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    color: var(--light-text);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    background-color: #04131f; /* Darker shade for copyright section */
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    margin-top: 0;
    font-weight: 300;
}

/* Media Gallery Styles */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .media-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    header {
        padding: 10px 0;
    }
    
    .logo {
        float: none;
        text-align: center;
    }
    
    nav {
        justify-content: center;
        margin-top: 10px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .profile-section {
        flex-direction: column;
    }
    
    .profile-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .footer-content > div {
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    section h2 {
        font-size: 28px;
    }
    
    .business-grid,
    .apparel-grid,
    .media-content {
        grid-template-columns: 1fr;
    }
}
