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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.2);
}

.main-nav a.member-tab {
    background: #ff6b6b;
    font-weight: bold;
}

.main-nav a.member-tab:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1200') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: #ff6b6b;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Requirements Section */
.requirements-section {
    padding: 60px 20px;
    background: white;
}

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

.requirement-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-box h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.requirement-box ul {
    list-style: none;
}

.requirement-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.requirement-box li:last-child {
    border-bottom: none;
}

.requirement-box i {
    margin-right: 10px;
    color: #ffd700;
}

/* Stats Section */
.stats-section {
    background: #2c3e50;
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Packages Section */
.packages-section {
    padding: 60px 20px;
    background: #f4f4f4;
}

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

.package-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.package-card .price {
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-card li i {
    color: #28a745;
    margin-right: 10px;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: white;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.salary-info {
    background: #667eea;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.salary-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.work-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.work-item h4 {
    color: #667eea;
    margin-bottom: 10px;
}

.work-item i {
    margin-right: 10px;
}

/* Registration Section */
.registration-section {
    padding: 60px 20px;
    background: #f4f4f4;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: scale(1.05);
}

/* Locations Section */
.locations-section {
    padding: 60px 20px;
    background: white;
}

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

.location-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: transform 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
}

/* Blogs Section */
.blogs-section {
    padding: 60px 20px;
    background: #f4f4f4;
}

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

.blog-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.blog-card .date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-card p {
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
}

/* Member Section */
.member-section {
    padding: 60px 20px;
    background: #f4f4f4;
}

.sharksocial-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #667eea;
        padding: 20px;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* SharkSocial Integrated Styles */
.sharksocial-integrated {
    background: #f0f2f5;
    padding: 60px 0;
}

.sharksocial-integrated .auth-container {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sharksocial-integrated .form-group {
    margin-bottom: 20px;
}

.sharksocial-integrated .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.sharksocial-integrated .form-group input,
.sharksocial-integrated .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.sharksocial-integrated .btn {
    width: 100%;
    padding: 12px;
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.sharksocial-integrated .btn:hover {
    background: #166fe5;
}

.sharksocial-integrated .btn-secondary {
    background: #42b72a;
}

.sharksocial-integrated .btn-secondary:hover {
    background: #36a420;
}

.sharksocial-integrated .link-text {
    text-align: center;
    margin-top: 20px;
    color: #1877f2;
    cursor: pointer;
}

.sharksocial-integrated .error {
    color: #e74c3c;
    margin-top: 10px;
    text-align: center;
}

.sharksocial-integrated .success {
    color: #27ae60;
    margin-top: 10px;
    text-align: center;
}

.sharksocial-feed {
    max-width: 800px;
    margin: 0 auto;
}

.sharksocial-header {
    background: #1877f2;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sharksocial-header .logo {
    font-size: 24px;
    font-weight: bold;
}

.sharksocial-header .user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sharksocial-header .btn-logout {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.sharksocial-header .btn-logout:hover {
    background: rgba(255,255,255,0.3);
}

.post-creator {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.post-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.post-info h3 {
    font-size: 16px;
    margin-bottom: 3px;
}

.post-info span {
    font-size: 12px;
    color: #65676b;
}

.post-content {
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4e6eb;
}

.action-btn {
    flex: 1;
    padding: 8px;
    background: #f0f2f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: #65676b;
}

.action-btn:hover {
    background: #e4e6eb;
}

.action-btn.liked {
    color: #1877f2;
}

.comments-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4e6eb;
}

.comment {
    background: #f0f2f5;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.comment strong {
    margin-right: 5px;
}

.comment-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.comment-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.comment-input button {
    padding: 8px 20px;
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
